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 6535a1e commit 62c948eCopy full SHA for 62c948e
Dockerfile
@@ -1,5 +1,7 @@
1
-FROM node:16 as nodebuilder
+FROM ubuntu:rolling 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
@@ -21,7 +23,7 @@ WORKDIR /app/fluidsignalr
21
23
22
24
# 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
-RUN dotnet publish -c Release -o out
26
+RUN dotnet publish -c Release -o out
27
28
###
29
### Final runtime image
0 commit comments