Skip to content

Commit

Permalink
Merge pull request #6 from blinklabs-io/chore/dockerfile
Browse files Browse the repository at this point in the history
chore: dockerfile
  • Loading branch information
wolf31o2 committed Aug 29, 2023
2 parents 806914b + 9680fb2 commit e9c362f
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
.git/
.github/
assets/
Dockerfile
.dockerignore
bursa
README.md
9 changes: 9 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
FROM ghcr.io/blinklabs-io/go:1.19.12-1 AS build

WORKDIR /code
COPY . .
RUN make build

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

0 comments on commit e9c362f

Please sign in to comment.