36 lines
813 B
Docker
36 lines
813 B
Docker
FROM mcr.microsoft.com/dotnet/sdk:8.0-alpine AS build
|
|
WORKDIR /src
|
|
|
|
COPY ./.config ./
|
|
RUN dotnet tool restore
|
|
|
|
COPY ./Groceries.sln ./
|
|
COPY ./Directory.Build.props ./
|
|
|
|
COPY */*.csproj ./
|
|
RUN for file in $(ls *.csproj); do mkdir -p ${file%.*} && mv $file ${file%.*}; done
|
|
RUN dotnet restore
|
|
|
|
WORKDIR Groceries
|
|
COPY ./Groceries/libman.json ./
|
|
RUN dotnet libman restore
|
|
|
|
COPY . ../
|
|
RUN dotnet publish --no-restore --output /out
|
|
|
|
FROM mcr.microsoft.com/dotnet/aspnet:8.0-alpine-composite AS base
|
|
WORKDIR /groceries
|
|
|
|
COPY --from=build /out .
|
|
COPY --from=build /src/Groceries/config.ini /config/
|
|
|
|
RUN apk add --no-cache icu-libs tzdata
|
|
|
|
ENV ASPNETCORE_HTTP_PORTS=80
|
|
ENV DOTNET_ENABLEDIAGNOSTICS=0
|
|
ENV DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=false
|
|
|
|
EXPOSE 80
|
|
VOLUME /config
|
|
ENTRYPOINT ["./Groceries", "--data", "/config"]
|