Hansimov commited on
Commit
e61325c
·
1 Parent(s): 9bced77

:boom: [Fix] Permission denied for /app/cache

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -1,7 +1,7 @@
1
  FROM python:3.11-slim
2
  WORKDIR $HOME/app
3
  COPY requirements.txt $HOME/app
4
- RUN mkdir /.cache && chmod 777 /.cache
5
  RUN pip install -r requirements.txt
6
  COPY . $HOME/app
7
  EXPOSE 22001
 
1
  FROM python:3.11-slim
2
  WORKDIR $HOME/app
3
  COPY requirements.txt $HOME/app
4
+ RUN mkdir /app/cache && chmod 777 /app/cache
5
  RUN pip install -r requirements.txt
6
  COPY . $HOME/app
7
  EXPOSE 22001