Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- 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 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 []
|