Update Dockerfile
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
@@ -10,6 +10,8 @@ ENV HOME=/home/user \
|
|
10 |
|
11 |
# Set the working directory to the user's home directory
|
12 |
WORKDIR $HOME/app
|
|
|
|
|
13 |
|
14 |
|
15 |
# Gunakan Node.js LTS
|
|
|
10 |
|
11 |
# Set the working directory to the user's home directory
|
12 |
WORKDIR $HOME/app
|
13 |
+
# Copy the current directory contents into the container at $HOME/app setting the owner to the user
|
14 |
+
COPY --chown=user . $HOME/app
|
15 |
|
16 |
|
17 |
# Gunakan Node.js LTS
|