Skip to content

Commit

Permalink
Add alternate minimal Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenpaulger committed Apr 12, 2024
1 parent 73629a2 commit a3717c2
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions Dockerfile.minimal
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
FROM golang:1.21.6 as builder
ENV GOPATH="/go"
WORKDIR /go/src/github.com/kovetskiy/mark
COPY / .
RUN make get \
&& make build


FROM alpine:3.19.1

COPY --from=builder /go/src/github.com/kovetskiy/mark/mark /bin/

ENTRYPOINT [""]

0 comments on commit a3717c2

Please sign in to comment.