dockerize

This commit is contained in:
2026-05-15 17:20:10 +01:00
parent 92097f8f37
commit e6380b7c22
7 changed files with 61 additions and 0 deletions

11
Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM python:3.14
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD [ "python", "./src/main.py", "-c", "/config.toml" ]