Skip to content

Commit

Permalink
fix: docker build failing on dependency download
Browse files Browse the repository at this point in the history
Following the migration to magefiles the make install_dependencies command was no longer available.
  • Loading branch information
fallion committed Jun 25, 2020
1 parent e6f39a7 commit 05105b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ RUN apk add --no-cache make git gcc musl-dev
# This step is done separately than `COPY . /app/` in order to
# cache dependencies.
COPY go.mod go.sum Makefile /app/
RUN make install_deps
RUN go mod download

COPY . /app/
RUN make build/docker
Expand Down

1 comment on commit 05105b7

@vercel
Copy link

@vercel vercel bot commented on 05105b7 Jun 25, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.