GAN_Project / Dockerfile
Utkarsh64's picture
Create Dockerfile
f5e05d4 verified
raw
history blame contribute delete
176 Bytes
FROM python:3.10
WORKDIR /app
COPY . /app
RUN pip install --no-cache-dir -r backend/requirements.txt
EXPOSE 7860
CMD ["gunicorn", "-b", "0.0.0.0:7860", "backend.app2:app"]