Initial commit

This commit is contained in:
2025-10-04 15:42:00 +02:00
commit 490245835d
33 changed files with 1049 additions and 0 deletions

19
Dockerfile Normal file
View File

@@ -0,0 +1,19 @@
FROM python:3.9-bookworm
WORKDIR /app
ENV TZ=Europe/Warsaw
ENV PORT=8000
RUN python -m venv .venv \
&& .venv/bin/pip install --upgrade pip
COPY ./requirements.txt .
RUN .venv/bin/pip install --no-cache-dir -r requirements.txt
RUN .venv/bin/pip install --no-cache-dir lxml
COPY . .
RUN chmod +x /app/entrypoint.sh
ENTRYPOINT ["/app/entrypoint.sh"]