Spaces:
Sleeping
Sleeping
FROM python:3.9 | |
RUN useradd -m -u 1000 user | |
WORKDIR /app | |
COPY --chown=user ./requirements.txt requirements.txt | |
RUN pip install --no-cache-dir --upgrade -r requirements.txt | |
COPY --chown=user . /app | |
# RUN pip install gunicorn | |
# USER 'srinidhidevaraj' | |
CMD [ "python3", "-m" , "flask", "run", "--host=0.0.0.0:5000"] | |
# CMD ["gunicorn", "--host", "0.0.0.0:7860", "main:app"] |