houssamDev commited on
Commit
086b66b
·
verified ·
1 Parent(s): 216f17e

Delete Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -25
Dockerfile DELETED
@@ -1,25 +0,0 @@
1
- FROM python:3.9-slim
2
-
3
- WORKDIR /app
4
-
5
- RUN apt-get update && apt-get install -y \
6
- build-essential \
7
- curl \
8
- software-properties-common \
9
- git \
10
- libgl1-mesa-glx \
11
- libglib2.0-0 \
12
- && rm -rf /var/lib/apt/lists/*
13
-
14
- COPY requirements.txt .
15
- COPY app.py .
16
- COPY recom.csv /app/recom.csv
17
-
18
- RUN pip3 install -r requirements.txt
19
- RUN mkdir -p /app/cache && chmod 777 /app/cache
20
- ENV TRANSFORMERS_CACHE=/app/cache
21
- EXPOSE 8501
22
-
23
- HEALTHCHECK CMD curl --fail http://localhost:8501/_stcore/health
24
-
25
- ENTRYPOINT ["streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0"]