a7-admin / Dockerfile
at41rv's picture
Create Dockerfile
292e4b5 verified
raw
history blame contribute delete
115 Bytes
FROM python:3.9-slim
WORKDIR /app
COPY . .
RUN pip install -r requirements.txt
EXPOSE 7860
CMD ["python", "app.py"]