Spaces:
Configuration error
Configuration error
File size: 1,408 Bytes
cd1af34 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 |
# # Use an official Python 3.10 runtime as a parent image
# FROM python:3.10-slim
# # Set the working directory in the container
# WORKDIR /usr/src/app
# # Copy the current directory contents into the container at /usr/src/app
# COPY . .
# # Install any needed packages specified in requirements.txt
# RUN pip install --no-cache-dir -r requirements.txt
# # Make port 7860 available to the world outside this container
# EXPOSE 7860
# # Run app.py when the container launches
# CMD ["python","./app.py"]
# Use an official Python 3.10 runtime as a parent image
FROM python:3.10-slim
# Set the working directory in the container
WORKDIR /usr/src/app
# Copy the current directory contents into the container at /usr/src/app
COPY . .
# Install any needed packages specified in requirements.txt
# RUN pip install -U pip
# https://pypi.tuna.tsinghua.edu.cn/simple
# RUN pip config set global.index-url http://mirrors.aliyun.com/pypi/simple
# RUN pip config set install.trusted-host mirrors.aliyun.com
RUN pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
RUN pip config set install.trusted-host pypi.tuna.tsinghua.edu.cn
RUN pip install --no-cache-dir -r requirements.txt
RUN apt-get update && apt-get install -y libgl1-mesa-glx
# Make port 7860 available to the world outside this container
EXPOSE 7860
# Run app.py when the container launches
CMD ["python", "./app.py"]
|