We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13688c4 commit 4fc2ad7Copy full SHA for 4fc2ad7
src/server/Dockerfile
@@ -22,4 +22,5 @@ ENV DOTNET_USE_POLLING_FILE_WATCHER true
22
ENV NUGET_XMLDOC_MODE skip
23
24
WORKDIR /app/API
25
-CMD [ "dotnet", "run" ]
+EXPOSE 5001
26
+CMD [ "dotnet", "run" ]
src/ui-client/Dockerfile
@@ -9,6 +9,7 @@ ENV PATH /app/node_modules/.bin:$PATH
9
COPY . /app
10
RUN npm install
11
12
+EXPOSE 3000
13
CMD [ "npm", "start" ]
14
15
#COPY build /app/build
@@ -18,4 +19,4 @@ CMD [ "npm", "start" ]
18
19
#EXPOSE 8080
20
#COPY --from=build-step /app/build /usr/share/nginx/html
21
#COPY --from=build-step /app/nginx.conf /etc/nginx/conf.d/default.conf
-#CMD [ "nginx", "-g", "daemon off;" ]
+#CMD [ "nginx", "-g", "daemon off;" ]
0 commit comments