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.
2 parents 69d5ce0 + 3344cc4 commit 862b32aCopy full SHA for 862b32a
frontend/Dockerfile
@@ -12,7 +12,10 @@ RUN find . -type f ! -path '*/node_modules/*' -print0 | xargs -0 dos2unix
12
13
EXPOSE 56000
14
15
+RUN mkdir -p /app/resources && chown -R node:node /app/resources
16
+VOLUME /app/resources
17
+
18
RUN groupadd --gid 1000 node && useradd --uid 1000 --gid node --shell /bin/bash --create-home node
19
RUN chown -R 1000:1000 /app
20
USER node
-CMD npm run start-dist
21
+CMD npm run start-dist
0 commit comments