Spaces:
Sleeping
Sleeping
File size: 325 Bytes
09cf842 5549b4d 09cf842 5549b4d 09cf842 5549b4d 7fa1bbd 09cf842 5549b4d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
FROM python:3.9-alpine
WORKDIR /app
COPY ./requirements.txt /app/requirements.txt
RUN pip install --no-cache-dir --upgrade -r requirements.txt
RUN useradd -m -u 1000 user
USER user
ENV HOME=/home/user \
PATH=/home/user/.local/bin:$PATH
COPY --chown=user . /app
CMD ["gunicorn", "-b", "0.0.0.0:7860", "web_interface:app"] |