Skip to content

Commit

Permalink
Merge pull request #39 from blinklabs-io/chore/deps-chainguard-build
Browse files Browse the repository at this point in the history
chore(deps): use chainguard go image for build
  • Loading branch information
wolf31o2 authored Jul 3, 2023
2 parents c764137 + 015f0e2 commit 736cb75
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM golang:1.18 AS build
FROM cgr.dev/chainguard/go:1.19 AS build

WORKDIR /code
COPY . .
RUN make build

FROM cgr.dev/chainguard/glibc-dynamic AS snek
COPY --from=build /code/snek /usr/local/bin/
ENTRYPOINT ["/usr/local/bin/snek"]
COPY --from=build /code/snek /bin/
ENTRYPOINT ["snek"]

0 comments on commit 736cb75

Please sign in to comment.