Skip to content

Commit

Permalink
fix(Makefile): move dbctl before Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
kkweon committed Jun 29, 2021
1 parent 0f8ecd9 commit 3d48b3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ COPY --from=golang:1.16 /usr/local/go/ /usr/local/go/
WORKDIR /workspace
COPY ./client/pubspec.lock ./client/pubspec.yaml ./client/
COPY ./server ./server/
COPY ./dbctl ./dbctl/
COPY Makefile .

RUN make install
COPY ./dbctl ./dbctl/
RUN cd dbctl && go mod download
RUN rm -rf client server Makefile dbctl

Expand Down

0 comments on commit 3d48b3e

Please sign in to comment.