Update Dockerfile
Browse files- Dockerfile +27 -13
Dockerfile
CHANGED
@@ -1,13 +1,27 @@
|
|
1 |
-
FROM
|
2 |
-
|
3 |
-
|
4 |
-
RUN
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
#
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
FROM node:18
|
2 |
+
|
3 |
+
# Set up a new user named "user" with user ID 1000
|
4 |
+
RUN useradd -o -u 1000 user
|
5 |
+
|
6 |
+
# Switch to the "user" user
|
7 |
+
USER user
|
8 |
+
|
9 |
+
# Set home to the user's home directory
|
10 |
+
ENV HOME=/home/user \
|
11 |
+
PATH=/home/user/.local/bin:$PATH
|
12 |
+
|
13 |
+
# Set the working directory to the user's home directory
|
14 |
+
WORKDIR $HOME/app
|
15 |
+
|
16 |
+
# Install app dependencies
|
17 |
+
# A wildcard is used to ensure both package.json AND package-lock.json are copied
|
18 |
+
# where available (npm@5+)
|
19 |
+
COPY --chown=user package*.json $HOME/app
|
20 |
+
|
21 |
+
RUN npm install
|
22 |
+
|
23 |
+
# Copy the current directory contents into the container at $HOME/app setting the owner to the user
|
24 |
+
COPY --chown=user . $HOME/app
|
25 |
+
|
26 |
+
EXPOSE 7860
|
27 |
+
CMD [ "npm", "run", "start" ]
|