We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ecf9ce2 commit e1936fcCopy full SHA for e1936fc
2 files changed
src/Api/Dockerfile
@@ -3,6 +3,9 @@
3
FROM mcr.microsoft.com/dotnet/sdk:9.0-alpine as builder
4
WORKDIR /build
5
COPY ../../. .
6
+RUN apk add --no-cache nodejs npm
7
+RUN npm install -g yarn
8
+RUN yarn --version
9
RUN dotnet publish -c Release -o /build/publish src/Api/Api.csproj
10
11
#########################################################################
src/Web/Dockerfile
RUN dotnet publish -c Release -o /build/publish src/Web/Web.csproj
0 commit comments