Parcourir la source

fix build step

AjayTripathy il y a 6 ans
Parent
commit
f16a9340c8
1 fichiers modifiés avec 0 ajouts et 5 suppressions
  1. 0 5
      Dockerfile

+ 0 - 5
Dockerfile

@@ -5,11 +5,6 @@ WORKDIR /app
 COPY go.mod .
 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
 RUN go mod download
 # COPY the source code as the last step