From f0168fd67ea4441de018a64cbbb6cc32f35bbb2c Mon Sep 17 00:00:00 2001 From: Aditya <60684641+0x0elliot@users.noreply.github.com> Date: Sat, 14 Dec 2024 18:30:38 +0530 Subject: [PATCH] fix: removing unnecessary comments --- functions/onprem/orborus/Dockerfile | 4 ---- 1 file changed, 4 deletions(-) diff --git a/functions/onprem/orborus/Dockerfile b/functions/onprem/orborus/Dockerfile index 8e0010f3..417bf568 100644 --- a/functions/onprem/orborus/Dockerfile +++ b/functions/onprem/orborus/Dockerfile @@ -2,12 +2,9 @@ FROM golang:1.22 as builder WORKDIR /app -# Copy go.mod and go.sum first (if you have them) -# This allows better caching of dependencies # COPY go.* ./ RUN go mod init orborus -# Combine all go get commands into a single layer RUN go get \ github.com/docker/docker/api/types \ github.com/docker/docker/api/types/container \ @@ -17,7 +14,6 @@ RUN go get \ github.com/shuffle/shuffle-shared \ github.com/shirou/gopsutil -# Copy the rest of the code COPY orborus.go . RUN go mod tidy && \