Jbdddsai's picture
initial commit
e7ab06c
raw
history blame contribute delete
No virus
300 Bytes
FROM python:3.10.14-slim
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
RUN useradd -m -u 1000 user
USER user
ENV HOME=/home/user \
PATH=/home/user/.local/bin:$PATH
WORKDIR $HOME/app
COPY --chown=user . $HOME/app
COPY . /app
EXPOSE 7860
CMD ["python", "app.py"]