harpomaxx commited on
Commit
08b503e
·
1 Parent(s): ef4b3cd

add ./cache

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -0
Dockerfile CHANGED
@@ -14,6 +14,8 @@ RUN R -e "library(tensorflow);install_tensorflow(version='2.9')"
14
  RUN R -e "library(keras);install_keras(version='2.9')"
15
  COPY /app /app
16
  WORKDIR /app
 
 
17
  EXPOSE 7860
18
  ENTRYPOINT ["Rscript","/app/launchservice.R"]
19
 
 
14
  RUN R -e "library(keras);install_keras(version='2.9')"
15
  COPY /app /app
16
  WORKDIR /app
17
+ RUN mkdir -p /.cache
18
+ RUN chmod 777 /.cache
19
  EXPOSE 7860
20
  ENTRYPOINT ["Rscript","/app/launchservice.R"]
21