yonikremer commited on
Commit
a8dfddc
1 Parent(s): 7773295

attempt 8 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 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"]
 
1
  FROM bitnami/pytorch
2
 
3
+ RUN mkdir --mode 600 /app/my_streamlit_app
4
+ WORKDIR /app/my_stramlit_app
5
 
6
+ COPY ./requirements.txt /app/my_streamlit_app/requirements.txt
7
 
8
+ RUN pip install --no-cache-dir -r /app/my_streamlit_app/requirements.txt
9
 
10
+ RUN mkdir --mode 600 "/app/my_streamlit_app/.cache/"
11
+ RUN mkdir --mode 600 "/app/my_streamlit_app/.cache/huggingface/"
12
+ ENV HUGGINGFACE_HUB_CACHE="/app/my_streamlit_app/.cache/huggingface"
13
+ RUN mkdir --mode 600 "/app/my_streamlit_app/.cache/transformers/"
14
+ ENV TRANSFORMERS_CACHE="/app/my_streamlit_app/.cache/transformers"
15
 
16
+ COPY . /app/my_streamlit_app
17
 
18
  CMD ["streamlit", "run", "/app/app.py"]