bhgi commited on
Commit
d40ff1e
·
verified ·
1 Parent(s): 55dbddd

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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
- CMD ["/start.sh"]
 
 
 
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"]