priviledge_testing / Dockerfile
MySafeCode's picture
Upload Dockerfile
ef51184 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"]