We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1eb0ac2 commit ed13c1fCopy full SHA for ed13c1f
Dockerfile
@@ -51,7 +51,6 @@ USER node
51
52
# Copy package.json so that package manager commands can be used.
53
COPY package.json .
54
-COPY ./config ./config
55
56
# Copy the production dependencies from the deps stage and also
57
# the built application from the build stage into the image.
@@ -61,5 +60,9 @@ COPY --from=build /usr/src/app/build ./build
61
60
# Expose the port that the application listens on.
62
EXPOSE 3000
63
+# Define environment variables for the paths to the configuration and tool folders.
64
+ENV PATH_TO_CONFIG_FOLDER=''
65
+ENV PATH_TO_TOOLS_FOLDER=''
66
+
67
# Run the application.
-CMD node build/server-remote.js
68
+ENTRYPOINT ["node", "build/server-remote.js"]
0 commit comments