All checks were successful
Create and publish a Docker image / Publish image (push) Successful in 7m46s
26 lines
982 B
Docker
26 lines
982 B
Docker
FROM mcr.microsoft.com/dotnet/sdk:9.0-alpine3.22 AS build
|
|
ARG BUILD_CONFIGURATION=Release
|
|
WORKDIR /src
|
|
COPY ./SfeduSchedule ./SfeduSchedule
|
|
COPY ./SfeduSchedule.Plugin.Abstractions ./SfeduSchedule.Plugin.Abstractions
|
|
WORKDIR /src/SfeduSchedule
|
|
RUN dotnet restore "SfeduSchedule.csproj"
|
|
RUN dotnet publish "SfeduSchedule.csproj" -c $BUILD_CONFIGURATION -o /app/publish /p:UseAppHost=false
|
|
|
|
FROM mcr.microsoft.com/dotnet/aspnet:9.0 AS final
|
|
EXPOSE 8080
|
|
WORKDIR /app
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y --no-install-recommends wget && \
|
|
wget -q https://github.com/PowerShell/PowerShell/releases/download/v7.5.2/powershell_7.5.2-1.deb_amd64.deb && \
|
|
apt-get install -y ./powershell_7.5.2-1.deb_amd64.deb && \
|
|
rm -f powershell_7.5.2-1.deb_amd64.deb && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
ENV PLAYWRIGHT_BROWSERS_PATH=/ms-playwright
|
|
|
|
COPY --from=build /app/publish .
|
|
RUN pwsh ./playwright.ps1 install --with-deps chromium
|
|
|
|
ENTRYPOINT ["dotnet", "SfeduSchedule.dll"] |