Pr_2 / Dockerfile
shiv-4567892009's picture
Created Dockerfile
66bd8c9 verified
raw
history blame contribute delete
116 Bytes
FROM python:3.9-slim
WORKDIR /app
COPY . .
RUN pip install -r requirements.txt
EXPOSE 7860
CMD ["python", "app.py"]