Skip to content

Commit

Permalink
Merge pull request #6 from kierankihn:dev
Browse files Browse the repository at this point in the history
fix: timezone error
  • Loading branch information
kierankihn authored Jan 13, 2024
2 parents 5d2f9d2 + f1ece1a commit 03a84c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ WORKDIR ./app

ADD . .

RUN apk add --update --no-cache tzdata

RUN apk add --update --no-cache py3-pip

RUN apk add --update --no-cache binutils
Expand All @@ -16,6 +14,8 @@ RUN pyinstaller -F ./main.py

FROM alpine:latest as runner

RUN apk add --update --no-cache tzdata

WORKDIR ./app

COPY --from=builder /app/dist/main /app
Expand Down

0 comments on commit 03a84c7

Please sign in to comment.