aproxtimedev commited on
Commit
83876e2
·
verified ·
1 Parent(s): 95db7d4

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -1
Dockerfile CHANGED
@@ -11,4 +11,9 @@ WORKDIR /app
11
  RUN wget "https://github.com/9001/copyparty/releases/latest/download/copyparty-sfx.py" -O copyparty-sfx.py
12
  RUN chown user:user copyparty-sfx.py
13
 
14
- CMD ["python", "copyparty-sfx.py"]
 
 
 
 
 
 
11
  RUN wget "https://github.com/9001/copyparty/releases/latest/download/copyparty-sfx.py" -O copyparty-sfx.py
12
  RUN chown user:user copyparty-sfx.py
13
 
14
+ COPY --chown=user ./entrypoint.sh entrypoint.sh
15
+ RUN chmod +x entrypoint.sh
16
+
17
+ ENTRYPOINT ["/home/app/entrypoint.sh"]
18
+
19
+ CMD []