makethisplaylist/Dockerfile
Louis Gallet 0e10bf6476
Some checks failed
ci / docker (push) Has been cancelled
feat: 🎉 Everything works
2024-06-19 23:40:27 +02:00

16 lines
252 B
Docker

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"]