Skip to content

Commit

Permalink
Add TZDATA to docker. Fixes #112
Browse files Browse the repository at this point in the history
  • Loading branch information
samwiseg0 committed Mar 11, 2019
1 parent 4e2f153 commit 2f9c76e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ COPY /varken /app/varken

COPY /data /app/data

RUN python3 -m pip install -r /app/requirements.txt
RUN apk add --no-cache tzdata && \
python3 -m pip install -r /app/requirements.txt

CMD cp /app/data/varken.example.ini /config/varken.example.ini && python3 /app/Varken.py --data-folder /config

Expand Down
5 changes: 3 additions & 2 deletions Dockerfile.arm
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@ COPY /varken /app/varken

COPY /data /app/data

RUN python3 -m pip install -r /app/requirements.txt
RUN apk add --no-cache tzdata && \
python3 -m pip install -r /app/requirements.txt

CMD cp /app/data/varken.example.ini /config/varken.example.ini && python3 /app/Varken.py --data-folder /config

VOLUME /config
VOLUME /config
5 changes: 3 additions & 2 deletions Dockerfile.arm64
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@ COPY /varken /app/varken

COPY /data /app/data

RUN python3 -m pip install -r /app/requirements.txt
RUN apk add --no-cache tzdata && \
python3 -m pip install -r /app/requirements.txt

CMD cp /app/data/varken.example.ini /config/varken.example.ini && python3 /app/Varken.py --data-folder /config

VOLUME /config
VOLUME /config

0 comments on commit 2f9c76e

Please sign in to comment.