reqroup / Dockerfile
Lucas ARRIESSE
Initial commit
41c1aed
raw
history blame contribute delete
128 Bytes
FROM python:3.11-slim
WORKDIR /app
COPY . .
EXPOSE 8000
RUN pip3 install -r requirements.txt
ENTRYPOINT ["python", "app.py"]