Бамп версии до 9 и добавил выбор института
All checks were successful
Build and deploy / Publish image (push) Successful in 3m33s

This commit is contained in:
2025-01-21 02:11:52 +03:00
parent e85cb89e1c
commit bb2c2328f5
21 changed files with 127 additions and 30 deletions

View File

@@ -1,11 +1,11 @@
FROM mcr.microsoft.com/dotnet/aspnet:8.0.11-alpine3.20 AS base
FROM mcr.microsoft.com/dotnet/aspnet:9.0.1-alpine3.21 AS base
USER root
RUN apk update && apk add --no-cache curl icu tzdata musl-locales musl-locales-lang
USER $APP_UID
WORKDIR /app
EXPOSE 8080
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build
FROM mcr.microsoft.com/dotnet/sdk:9.0.102 AS build
ARG BUILD_CONFIGURATION=Release
RUN apt update && apt install npm -y
WORKDIR /src