mirror of
https://github.com/Quackster/Minerva.git
synced 2025-06-29 21:07:45 +00:00
14 lines
421 B
Text
14 lines
421 B
Text
![]() |
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS builder
|
||
|
WORKDIR /sources
|
||
|
COPY . .
|
||
|
|
||
|
RUN apt update && apt install -y unzip
|
||
|
RUN dotnet publish -c Release --output build Minerva.sln --self-contained false
|
||
|
RUN unzip -qq ./tools/figuredata-shockwave.zip -d build
|
||
|
RUN unzip -qq ./tools/badges.zip -d build
|
||
|
|
||
|
FROM mcr.microsoft.com/dotnet/aspnet:8.0
|
||
|
WORKDIR /minerva
|
||
|
COPY --from=builder /sources/build .
|
||
|
ENTRYPOINT ["/minerva/Minerva"]
|