File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 12
12
## Technologies
13
13
* ASP.NET Core 8
14
14
* RavenDB 6.0.1
15
- * Angular 12
15
+ * Angular 14
16
16
17
17
It has minimum third-party dependencies and heaps of best practices.
18
18
Original file line number Diff line number Diff line change @@ -8,12 +8,12 @@ RUN dotnet restore back-end/WebApi/WebApi.csproj \
8
8
&& dotnet publish -c Release -o /publish back-end/WebApi/WebApi.csproj \
9
9
&& cp devops/run.sh /publish/run.sh
10
10
11
- FROM mhart/alpine- node:14 as front-end-build
11
+ FROM node:lts-alpine3.18 as front-end-build
12
12
13
13
WORKDIR /client
14
14
COPY ./front-end /client
15
- RUN npm install \
16
- && node_modules/.bin/ng build --prod
15
+ RUN npm install --legacy-peer-deps \
16
+ && node_modules/.bin/ng build --configuration production
17
17
18
18
# See the list of tags at https://mcr.microsoft.com/v2/dotnet/aspnet/tags/list
19
19
FROM mcr.microsoft.com/dotnet/aspnet:8.0.0 AS runtime
You can’t perform that action at this time.
0 commit comments