mvanyan commited on
Commit
cb29415
·
1 Parent(s): 0f0f5e3

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -2
Dockerfile CHANGED
@@ -7,6 +7,9 @@ RUN pip install aim
7
  COPY mnist_logs.tar.gz .
8
  RUN tar -xzf mnist_logs.tar.gz
9
 
10
- RUN chmod -R 777 /code
11
 
12
- CMD ["aim", "up", "--host", "0.0.0.0", "--port", "7860", "--workers", "2"]
 
 
 
 
 
7
  COPY mnist_logs.tar.gz .
8
  RUN tar -xzf mnist_logs.tar.gz
9
 
 
10
 
11
+ RUN touch /.aim_profile
12
+ RUN chown 1000:1000 /code /.aim_profile
13
+ RUN aim telemetry off
14
+
15
+ CMD ["aim", "up", "--host", "0.0.0.0", "--port", "7860", "--workers", "2"]