feat: 🎉 Everything works
Some checks failed
ci / docker (push) Has been cancelled

This commit is contained in:
2024-06-19 23:40:27 +02:00
commit 0e10bf6476
17 changed files with 567 additions and 0 deletions

16
Dockerfile Normal file
View File

@ -0,0 +1,16 @@
FROM python:3.11-alpine
LABEL authors="louisgallet"
ENV PYTHONDONTWRITEBYTECODE 1
ENV PYTHONUNBUFFERED 1
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 3000
ENTRYPOINT ["python", "main.py"]