You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
297 B
8 lines
297 B
FROM python:3.8.0
|
|
WORKDIR /code
|
|
COPY requirements.txt /code/requirements.txt
|
|
RUN pip config set global.index-url http://pypi.tuna.tsinghua.edu.cn/simple
|
|
RUN pip config set global.trusted-host pypi.tuna.tsinghua.edu.cn
|
|
RUN pip install --upgrade pip
|
|
RUN pip install -r requirements.txt
|
|
COPY . /code/ |