Image_generator / Dockerfile
yukee1992's picture
Update Dockerfile
d1e539f verified
raw
history blame contribute delete
163 Bytes
FROM python:3.9
WORKDIR /app
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
# Expose both ports
EXPOSE 8000 7860
CMD ["python", "app.py"]