Image-Optimizer-API / Dockerfile
badal9263's picture
Migrate from jerecom
0868469 verified
raw
history blame contribute delete
148 Bytes
FROM python:3.10
WORKDIR /app
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
CMD ["gunicorn", "-b", "0.0.0.0:7860", "app:app"]