Skip to content

Commit

Permalink
fix: fix for bug golang/go#49570
Browse files Browse the repository at this point in the history
  • Loading branch information
tyzbit committed May 1, 2022
1 parent 746bd91 commit ee11e55
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,6 +1,6 @@
FROM golang:1.18-alpine as build
WORKDIR /
COPY . ./
WORKDIR /app/
COPY . /app/

RUN apk add \
build-base \
Expand All @@ -10,7 +10,7 @@ RUN apk add \
FROM alpine
ENV GIN_MODE=release

COPY --from=build /bitcoin-balance-notifier /
COPY --from=build /app/bitcoin-balance-notifier /
VOLUME [ "/db" ]

CMD ["/bitcoin-balance-notifier"]

0 comments on commit ee11e55

Please sign in to comment.