thejagstudio commited on
Commit
1b87062
·
verified ·
1 Parent(s): 2710430

Delete Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -19
Dockerfile DELETED
@@ -1,19 +0,0 @@
1
- FROM python:3.9
2
-
3
- WORKDIR /data/app
4
-
5
- RUN apt-get update && apt-get install -y libgl1 && apt-get clean
6
-
7
-
8
- RUN pip install --upgrade pip && pip install tensorflow
9
-
10
- COPY requirements.txt ./
11
- RUN pip install -r requirements.txt
12
-
13
- RUN wget -O /data/app/sneaker_category_predictor_v2.h5 "https://huggingface.co/thejagstudio/SneakerAI/resolve/main/sneaker_category_predictor_v2.h5?download=true"
14
-
15
- COPY . .
16
-
17
- EXPOSE 7860
18
-
19
- CMD ["python", "/data/app/main.py"]