yewzy commited on
Commit
ba92168
·
verified ·
1 Parent(s): 35b0aff

Update dockerfile

Browse files
Files changed (1) hide show
  1. dockerfile +0 -12
dockerfile CHANGED
@@ -1,12 +0,0 @@
1
- FROM python:3.9-slim-buster
2
-
3
- WORKDIR /app
4
-
5
- COPY requirements.txt requirements.txt
6
- RUN pip install -r requirements.txt  
7
- RUN pip install tensorflow
8
-
9
-
10
- COPY . .
11
-
12
- CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "8000"]