Skip to content

Commit

Permalink
fix: Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
kskitek committed Jul 9, 2022
1 parent 6c88cc1 commit 7e66396
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,4 +1,4 @@
FROM golang:alpine AS builder
FROM golang:1.18-alpine AS builder

ARG LDFLAGS

Expand All @@ -12,6 +12,6 @@ RUN CGO_ENABLED=0 go build -ldflags="-w -s"

FROM gcr.io/distroless/static-debian11

COPY --from=builder /src/pusher /bin/pusher
COPY --from=builder /src/screeps-pusher /bin/screeps-pusher

ENTRYPOINT ["pusher"]
ENTRYPOINT ["screeps-pusher"]

0 comments on commit 7e66396

Please sign in to comment.