1
0
Fork 0
mirror of https://github.com/miawinter98/just-short-it.git synced 2024-09-20 01:39:00 +00:00
just-short-it/Dockerfile

24 lines
797 B
Docker
Raw Normal View History

2023-04-15 13:40:46 +00:00
#See https://aka.ms/customizecontainer to learn how to customize your debug container and how Visual Studio uses this Dockerfile to build your images for faster debugging.
FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS base
USER app
2023-04-15 13:40:46 +00:00
WORKDIR /app
EXPOSE 8080
2023-04-15 13:40:46 +00:00
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build
ARG BUILD_CONFIGURATION=Release
2023-04-15 13:40:46 +00:00
WORKDIR /src
COPY ["JustShortIt.csproj", "."]
RUN dotnet restore "./././JustShortIt.csproj"
2023-04-15 13:40:46 +00:00
COPY . .
WORKDIR "/src/."
RUN dotnet build "./JustShortIt.csproj" -c $BUILD_CONFIGURATION -o /app/build
2023-04-15 13:40:46 +00:00
FROM build AS publish
ARG BUILD_CONFIGURATION=Release
RUN dotnet publish "./JustShortIt.csproj" -c $BUILD_CONFIGURATION -o /app/publish /p:UseAppHost=false
2023-04-15 13:40:46 +00:00
FROM base AS final
WORKDIR /app
COPY --from=publish /app/publish .
ENTRYPOINT ["dotnet", "JustShortIt.dll"]