silly things :3

This commit is contained in:
xory 2025-08-17 21:52:21 +00:00
parent 2750b5fa78
commit e07865d607
4 changed files with 39 additions and 2 deletions

13
Dockerfile Normal file
View file

@ -0,0 +1,13 @@
FROM python:3.12
WORKDIR /app
COPY ./requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY ./main.py ./
COPY ./tools.py ./
COPY ./.env ./
RUN useradd app
USER app
CMD ["python", "main.py"]