Update Dockerfile
Browse files- Dockerfile +5 -3
Dockerfile
CHANGED
|
@@ -6,7 +6,9 @@ USER root
|
|
| 6 |
|
| 7 |
RUN mkdir -p /opt/openlist/data && chmod 777 /opt/openlist/data
|
| 8 |
|
| 9 |
-
COPY start.sh /start.sh
|
| 10 |
-
RUN chmod +x /start.sh
|
| 11 |
|
| 12 |
-
|
|
|
|
|
|
|
|
|
| 6 |
|
| 7 |
RUN mkdir -p /opt/openlist/data && chmod 777 /opt/openlist/data
|
| 8 |
|
| 9 |
+
COPY start.sh /opt/openlist/start.sh
|
| 10 |
+
RUN chmod +x /opt/openlist/start.sh
|
| 11 |
|
| 12 |
+
WORKDIR /opt/openlist
|
| 13 |
+
|
| 14 |
+
CMD ["/opt/openlist/start.sh"]
|