Set up a docker image

- Added .dockerignore, dockerfile and compose.yml + .gitea directory
This commit is contained in:
2025-09-06 01:18:56 +03:00
parent 16eccddb59
commit 873c061152
4 changed files with 109 additions and 0 deletions

11
dockerfile Normal file
View File

@ -0,0 +1,11 @@
FROM python:3.13-slim
WORKDIR /app
COPY . .
RUN apt-get update && apt-get install -y --no-install-recommends libpq-dev build-essential
RUN pip install --no-cache-dir -r requirements.txt
CMD ["python", "src/main.py"]