Selector/Dockerfile.Web

36 lines
1.0 KiB
Docker
Raw Normal View History

FROM mcr.microsoft.com/dotnet/sdk:6.0 AS base
2022-02-13 12:07:09 +00:00
COPY *.sln .
COPY Selector/*.csproj ./Selector/
COPY Selector.Cache/*.csproj ./Selector.Cache/
COPY Selector.Event/*.csproj ./Selector.Event/
COPY Selector.Model/*.csproj ./Selector.Model/
COPY Selector.Web/*.csproj ./Selector.Web/
COPY Selector.Tests/*.csproj ./Selector.Tests/
2022-02-13 12:40:30 +00:00
RUN dotnet restore ./Selector.Web/Selector.Web.csproj
2022-02-13 12:07:09 +00:00
COPY . ./
2022-02-13 20:21:27 +00:00
# FROM base as test
# RUN dotnet restore ./Selector.Tests/Selector.Tests.csproj
# RUN dotnet test --no-restore
FROM base as publish
2022-02-13 12:40:30 +00:00
RUN dotnet publish Selector.Web/Selector.Web.csproj -c Release -o /app --no-restore
2022-02-13 12:07:09 +00:00
2022-02-13 20:21:27 +00:00
FROM node as frontend
COPY ./Selector.Web/package.json /Selector.Web/
COPY ./Selector.Web/package-lock.json /Selector.Web/
2022-02-13 20:21:27 +00:00
WORKDIR /Selector.Web
RUN npm ci
COPY ./Selector.Web/ .
RUN npm run build
2022-02-13 12:07:09 +00:00
FROM mcr.microsoft.com/dotnet/aspnet:6.0
EXPOSE 80
2022-02-13 12:40:30 +00:00
WORKDIR /app
COPY --from=publish /app ./
2022-02-13 20:21:27 +00:00
COPY --from=frontend /Selector.Web/wwwroot ./Selector.Web/wwwroot/
2022-02-13 12:07:09 +00:00
ENV DOTNET_EnableDiagnostics=0
ENTRYPOINT ["dotnet", "Selector.Web.dll"]