Ufoptg commited on
Commit
996c3a5
1 Parent(s): 9abf67d

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -1
Dockerfile CHANGED
@@ -1,4 +1,4 @@
1
- FROM python:3.9.5-buster
2
 
3
  # Install dependencies
4
  RUN apt-get update && \
@@ -29,6 +29,11 @@ RUN chown -R 1000:0 /Hellbot && \
29
  chmod -R 755 /Hellbot && \
30
  chmod +x /Hellbot/start.sh
31
 
 
 
 
 
 
32
  # Expose port
33
  EXPOSE 7860
34
 
 
1
+ FROM rendyprojects/python:latest
2
 
3
  # Install dependencies
4
  RUN apt-get update && \
 
29
  chmod -R 755 /Hellbot && \
30
  chmod +x /Hellbot/start.sh
31
 
32
+ RUN chown -R 1000:0 .
33
+ RUN chmod 777 .
34
+ RUN chown -R 1000:0 /usr
35
+ RUN chmod 777 /usr
36
+
37
  # Expose port
38
  EXPOSE 7860
39