Skip to content

Commit

Permalink
changed default timezone for containers
Browse files Browse the repository at this point in the history
  • Loading branch information
Foroxon committed Dec 13, 2024
1 parent 7af07b8 commit 97105db
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions deploy/alerts/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
FROM python:3.12-slim
ENV TZ="Europe/Kyiv"
COPY alerts.py .
RUN --mount=type=bind,source=requirements.txt,target=/tmp/requirements.txt \
python -m pip install --no-cache-dir -r /tmp/requirements.txt
Expand Down
1 change: 1 addition & 0 deletions deploy/etryvoga/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
FROM python:3.12-slim
ENV TZ="Europe/Kyiv"
COPY etryvoga.py .
RUN --mount=type=bind,source=requirements.txt,target=/tmp/requirements.txt \
python -m pip install --no-cache-dir -r /tmp/requirements.txt
Expand Down
1 change: 1 addition & 0 deletions deploy/svg_generator/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
FROM python:3.12-slim
ENV TZ="Europe/Kyiv"
COPY svg_generator.py .
RUN --mount=type=bind,source=requirements.txt,target=/tmp/requirements.txt \
apt-get update && apt-get install --no-install-recommends -y libcairo2 && \
Expand Down
1 change: 1 addition & 0 deletions deploy/tcp_server/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
FROM python:3.12-slim
ENV TZ="Europe/Kyiv"
COPY tcp_server.py .
COPY GeoLite2-City.mmdb .
RUN --mount=type=bind,source=requirements.txt,target=/tmp/requirements.txt \
Expand Down
1 change: 1 addition & 0 deletions deploy/update_server/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
FROM python:3.12-slim
ENV TZ="Europe/Kyiv"
COPY update_server.py .
RUN --mount=type=bind,source=requirements.txt,target=/tmp/requirements.txt \
python -m pip install --no-cache-dir -r /tmp/requirements.txt
Expand Down
1 change: 1 addition & 0 deletions deploy/updater/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
FROM python:3.12-slim
ENV TZ="Europe/Kyiv"
COPY updater.py .
RUN --mount=type=bind,source=requirements.txt,target=/tmp/requirements.txt \
python -m pip install --no-cache-dir -r /tmp/requirements.txt
Expand Down
1 change: 1 addition & 0 deletions deploy/weather/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
FROM python:3.12-slim
ENV TZ="Europe/Kyiv"
COPY weather.py .
RUN --mount=type=bind,source=requirements.txt,target=/tmp/requirements.txt \
python -m pip install --no-cache-dir -r /tmp/requirements.txt
Expand Down
1 change: 1 addition & 0 deletions deploy/web_server/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
FROM python:3.12-slim
ENV TZ="Europe/Kyiv"
COPY web_server.py .
COPY jaam_v1.css .
COPY jaam_v1.js .
Expand Down
1 change: 1 addition & 0 deletions deploy/websocket_server/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
FROM python:3.12-slim
ENV TZ="Europe/Kyiv"
COPY websocket_server.py .
COPY GeoLite2-City.mmdb .
RUN --mount=type=bind,source=requirements.txt,target=/tmp/requirements.txt \
Expand Down

0 comments on commit 97105db

Please sign in to comment.