Smart-inbox / Dockerfile
imenayadi's picture
Add Dockerfile
2675314
raw
history blame contribute delete
No virus
153 Bytes
FROM python:3.10-slim
WORKDIR /app
COPY . /app
RUN pip install -U pip setuptools wheel
RUN pip install -r requirements.txt
CMD ["python", "app.py"]