Dox / Dockerfile
DSDUDEd's picture
Create Dockerfile
46b5ade verified
raw
history blame contribute delete
216 Bytes
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
COPY app.py .
COPY index.html .
COPY styles.css .
RUN pip install --upgrade pip && pip install -r requirements.txt
EXPOSE 7860
CMD ["python", "app.py"]