3DGrid-VQGAN_demo / Dockerfile
vshirasuna's picture
Add application files
0d70aa0
raw
history blame
159 Bytes
FROM python:3.9.7
WORKDIR /app
COPY requirements.txt .
RUN pip install -r --no-cache-dir requirements.txt
# preload models
COPY . .
CMD ["python", "app.py"]