469A34CBAD52-RMBG-00 / Dockerfile
Container's picture
Upload 5 files
2fd57e7 verified
raw
history blame contribute delete
353 Bytes
FROM python:3.9-slim
COPY requirements.txt .
RUN pip3 install --no-cache-dir -r requirements.txt
RUN pip3 list
# Set up a new user named "user" with user ID 1000
RUN useradd -m -u 1000 user
# 切换到"user"用户
USER user
WORKDIR /app
COPY . /app
EXPOSE 7860
# ENTRYPOINT ["python3", "app.py"]
ENTRYPOINT ["python3","app.py"]