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 8409484 commit f7c37c4Copy full SHA for f7c37c4
Dockerfile
@@ -1,7 +1,5 @@
1
-FROM ubuntu:rolling as nodebuilder
+FROM node:16 as nodebuilder
2
ENV DEBIAN_FRONTEND=noninteractive
3
-RUN apt-get -y update
4
-RUN apt-get -y install nodejs npm
5
WORKDIR /js
6
COPY fluidsignalr/ClientApp/package*.json /js/
7
RUN npm ci
@@ -23,7 +21,7 @@ WORKDIR /app/fluidsignalr
23
21
24
22
# Copy the js dist from the nodebuilder stage; the csproj has a target to copy it over to the out dir
25
COPY --from=nodebuilder /js/dist /app/fluidsignalr/ClientApp/dist
26
-RUN dotnet publish -c Release -o out
+RUN dotnet publish -c Release -o out
27
28
###
29
### Final runtime image
0 commit comments