use alpine image

This commit is contained in:
Ryan Peters 2024-05-08 01:34:16 +00:00
parent e20e8d907f
commit aa3accb412

View File

@ -4,7 +4,7 @@ COPY . .
RUN dotnet publish "BinaryDad.Notes.csproj" -c Release -o /app/publish /p:UseAppHost=false
FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS base
FROM mcr.microsoft.com/dotnet/aspnet:8.0-alpine AS base
WORKDIR /app
RUN mkdir notes
COPY --from=build /app/publish .