瀏覽代碼

fix build step

AjayTripathy 6 年之前
父節點
當前提交
f16a9340c8
共有 1 個文件被更改,包括 0 次插入5 次删除
  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