eef / Dockerfile
Heekyung's picture
Upload 71 files
8377658
raw
history blame contribute delete
167 Bytes
FROM python:3.7
WORKDIR /app
COPY . .
EXPOSE 7860
RUN pip install --no-cache-dir -r requirements.txt
ENTRYPOINT [ "python", "-m", "draggan.web", "--ip", "0.0.0.0"]