File size: 238 Bytes
ac46865
d515883
4a4402a
 
 
 
 
 
 
 
d515883
 
81248a2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
FROM pengchuanzhang/pytorch:ubuntu20.04_torch1.9-cuda11.3-nccl2.9.9


WORKDIR /code

COPY ./requirements.txt /code/requirements.txt

RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt


COPY . .

CMD ["python", "main.py"]