/
seedov
/
O3API
Обзор
Документация
Войти
/
seedov
/
O3API
Код
Запросы
0
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
VehiclesDataService/Dockerfile
29 строк
1 KB
anton sedov
initial
29 фев 2024, 12:47
29 фев 2024, 12:47
93b561a
Код
Авторство
О чём код?
#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 WORKDIR /app EXPOSE 8080 FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build # Install clang/zlib1g-dev dependencies for publishing to native RUN apt-get update \ && apt-get install -y --no-install-recommends \ clang zlib1g-dev ARG BUILD_CONFIGURATION=Release WORKDIR /src COPY ["VehiclesDataService/VehiclesDataService.csproj", "VehiclesDataService/"] RUN dotnet restore "./VehiclesDataService/VehiclesDataService.csproj" COPY . . WORKDIR "/src/VehiclesDataService" RUN dotnet build "./VehiclesDataService.csproj" -c $BUILD_CONFIGURATION -o /app/build FROM build AS publish ARG BUILD_CONFIGURATION=Release RUN dotnet publish "./VehiclesDataService.csproj" -c $BUILD_CONFIGURATION -o /app/publish /p:UseAppHost=true FROM mcr.microsoft.com/dotnet/runtime-deps:8.0 AS final WORKDIR /app EXPOSE 8080 COPY --from=publish /app/publish . ENTRYPOINT ["./VehiclesDataService"]