File size: 214 Bytes
5053d6e
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
FROM python:3.9

WORKDIR /code

RUN pip install aim

COPY stylegan_logs.tar.gz .
RUN tar -xzf stylegan_logs.tar.gz

RUN chmod -R 777 /code

CMD ["aim", "up", "--host", "0.0.0.0", "--port", "7860", "--workers", "2"]