imperialwool commited on
Commit
4548cde
·
1 Parent(s): 6285f13

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +7 -1
Dockerfile CHANGED
@@ -1,5 +1,11 @@
1
  FROM tensorflow/tensorflow:latest
2
 
 
 
 
 
 
 
3
  RUN pip install fastapi uvicorn keras aiofiles
4
 
5
- CMD ["python", "main.py"]
 
1
  FROM tensorflow/tensorflow:latest
2
 
3
+ COPY . /app
4
+
5
+ RUN chmod -R 777 /app
6
+
7
+ WORKDIR /app
8
+
9
  RUN pip install fastapi uvicorn keras aiofiles
10
 
11
+ CMD ["python", "main.py"]