api / Dockerfile
toailao125's picture
hi
03a1acd
raw
history blame
No virus
316 Bytes
FROM python:3.9
RUN useradd -m -u 1000 user
USER user
ENV PATH="/home/user/.local/bin:$PATH"
WORKDIR /app
COPY --chown=user ./requirements.txt requirements.txt
RUN pip install --no-cache-dir --upgrade -r requirements.txt
COPY --chown=user . /app
CMD ["gunicorn", "-w", "4", "-b", "0.0.0.0:5000", "", "app:app"]