1v1hangman / Dockerfile
Sergidev's picture
Add files v1
7ef7190 verified
raw
history blame
360 Bytes
# Use an official Python runtime as the base image
FROM python:3.9-slim
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", "--bind", "0.0.0.0:7860", "app:app"]