Update Dockerfile
Browse files- Dockerfile +19 -0
Dockerfile
CHANGED
@@ -1,3 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
# Gunakan Node.js LTS
|
2 |
FROM node:lts
|
3 |
|
|
|
1 |
+
# Set up a new user named "user" with user ID 1000
|
2 |
+
RUN useradd -m -u 1000 user
|
3 |
+
|
4 |
+
# Switch to the "user" user
|
5 |
+
USER user
|
6 |
+
|
7 |
+
# Set home to the user's home directory
|
8 |
+
ENV HOME=/home/user \
|
9 |
+
PATH=/home/user/.local/bin:$PATH
|
10 |
+
|
11 |
+
# Set the working directory to the user's home directory
|
12 |
+
WORKDIR $HOME/app
|
13 |
+
|
14 |
+
# Try and run pip command after setting the user with `USER user` to avoid permission issues with Python
|
15 |
+
RUN pip install --no-cache-dir --upgrade pip
|
16 |
+
|
17 |
+
# Copy the current directory contents into the container at $HOME/app setting the owner to the user
|
18 |
+
COPY --chown=user . $HOME/app
|
19 |
+
|
20 |
# Gunakan Node.js LTS
|
21 |
FROM node:lts
|
22 |
|