feat: add docker

This commit is contained in:
2025-01-04 00:07:22 -03:00
parent 2a1bf93ae0
commit 810bb41323
2 changed files with 20 additions and 0 deletions

10
Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM python:3.11-slim
WORKDIR /app
COPY . /app/
RUN pip install --no-cache-dir poetry==1.8.5 && \
poetry install --no-interaction --no-dev
CMD ["sh", "-c", "poetry run ppgee $USERNAME $PASSWORD"]