yonikremer commited on
Commit
7773295
1 Parent(s): 04435e8

attempt 7 to resolve permission error

Browse files
Files changed (1) hide show
  1. Dockerfile +10 -10
Dockerfile CHANGED
@@ -1,18 +1,18 @@
1
  FROM bitnami/pytorch
2
 
3
- RUN mkdir --mode 600 /my_streamlit_app
4
- WORKDIR /my_stramlit_app
5
 
6
- COPY ./requirements.txt /my_streamlit_app/requirements.txt
7
 
8
- RUN pip install --no-cache-dir -r /my_streamlit_app/requirements.txt
9
 
10
- RUN mkdir --mode 600 "/my_streamlit_app/.cache/"
11
- RUN mkdir --mode 600 "/my_streamlit_app/.cache/huggingface/"
12
- ENV HUGGINGFACE_HUB_CACHE="/my_streamlit_app/.cache/huggingface"
13
- RUN mkdir --mode 600 "/my_streamlit_app/.cache/transformers/"
14
- ENV TRANSFORMERS_CACHE="/my_streamlit_app/.cache/transformers"
15
 
16
- COPY . /my_streamlit_app
17
 
18
  CMD ["streamlit", "run", "/app/app.py"]
 
1
  FROM bitnami/pytorch
2
 
3
+ RUN chmod -R 700 /app
4
+ WORKDIR /app
5
 
6
+ COPY ./requirements.txt /app/requirements.txt
7
 
8
+ RUN pip install --no-cache-dir -r /app/requirements.txt
9
 
10
+ RUN mkdir "/app/.cache/"
11
+ RUN mkdir "/app/.cache/huggingface/"
12
+ ENV HUGGINGFACE_HUB_CACHE="/app/.cache/huggingface"
13
+ RUN mkdir "/app/.cache/transformers/"
14
+ ENV TRANSFORMERS_CACHE="/app/.cache/transformers"
15
 
16
+ COPY . /app
17
 
18
  CMD ["streamlit", "run", "/app/app.py"]