kubedocker
commited on
Commit
•
e10266c
1
Parent(s):
bd3724a
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -20,6 +20,6 @@ ENV HOME=/home/user \
|
|
20 |
# Set the working directory to the user's home directory
|
21 |
WORKDIR $HOME/app
|
22 |
|
23 |
-
COPY ./start.sh /start.sh
|
24 |
|
25 |
-
ENTRYPOINT ["
|
|
|
20 |
# Set the working directory to the user's home directory
|
21 |
WORKDIR $HOME/app
|
22 |
|
23 |
+
COPY --chown=user ./start.sh $HOME/app/start.sh
|
24 |
|
25 |
+
ENTRYPOINT ["./start.sh"]
|