AjayTripathy 6 anni fa
parent
commit
f16a9340c8
1 ha cambiato i file con 0 aggiunte e 5 eliminazioni
  1. 0 5
      Dockerfile

+ 0 - 5
Dockerfile

@@ -5,11 +5,6 @@ WORKDIR /app
 COPY go.mod .
 COPY go.mod .
 COPY go.sum .
 COPY go.sum .
 
 
-RUN mkdir ./test
-RUN mkdir ./test/mocks
-COPY ./test/mocks/go.mod ./test/mocks/go.mod
-COPY ./test/mocks/go.sum ./test/mocks/go.sum
-
 # Get dependencies - will also be cached if we won't change mod/sum
 # Get dependencies - will also be cached if we won't change mod/sum
 RUN go mod download
 RUN go mod download
 # COPY the source code as the last step
 # COPY the source code as the last step