32 lines
1.0 KiB
Docker
32 lines
1.0 KiB
Docker
FROM mcr.microsoft.com/dotnet/sdk:8.0-alpine AS build
|
|
WORKDIR /mwl
|
|
COPY ./MyWebLog.sln ./
|
|
COPY ./Directory.Build.props ./
|
|
COPY ./MyWebLog/MyWebLog.fsproj ./MyWebLog/
|
|
COPY ./MyWebLog.Data/MyWebLog.Data.fsproj ./MyWebLog.Data/
|
|
COPY ./MyWebLog.Domain/MyWebLog.Domain.fsproj ./MyWebLog.Domain/
|
|
RUN dotnet restore
|
|
|
|
COPY . ./
|
|
WORKDIR /mwl/MyWebLog
|
|
RUN dotnet publish -f net8.0 -c Release -r linux-x64 --no-self-contained -p:PublishSingleFile=false
|
|
|
|
FROM alpine AS theme
|
|
RUN apk add --no-cache zip
|
|
WORKDIR /themes
|
|
COPY ./default-theme ./default-theme/
|
|
RUN zip default-theme.zip ./default-theme/*
|
|
COPY ./admin-theme ./admin-theme/
|
|
RUN zip admin-theme.zip ./admin-theme/*
|
|
|
|
FROM mcr.microsoft.com/dotnet/aspnet:8.0-alpine as final
|
|
WORKDIR /app
|
|
RUN apk add --no-cache icu-libs
|
|
ENV DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=false
|
|
COPY --from=build /mwl/MyWebLog/bin/Release/net8.0/linux-x64/publish/ ./
|
|
COPY --from=theme /themes/*.zip /app/
|
|
RUN mkdir themes
|
|
|
|
EXPOSE 80
|
|
CMD [ "dotnet", "/app/MyWebLog.dll" ]
|