caca23232-duplicate / Dockerfile
victor's picture
victor HF Staff
test: bucket persistence with Docker Space
d687ef6
raw
history blame contribute delete
108 Bytes
FROM python:3.11-slim
WORKDIR /app
COPY app.py .
RUN pip install flask
EXPOSE 7860
CMD ["python", "app.py"]