oliverbooth.dev/OliverBooth/Dockerfile

29 lines
740 B
Docker
Raw Normal View History

2023-09-26 13:43:29 +00:00
# run Gulp to build the app
FROM node:12.16.1-alpine as build-stage
COPY package*.json ./
COPY Gulpfile.js ./
RUN npm install --global gulp-cli
RUN npm install
RUN gulp
2023-08-13 15:38:56 +00:00
FROM mcr.microsoft.com/dotnet/aspnet:7.0 AS base
2023-05-26 18:05:44 +00:00
WORKDIR /app
EXPOSE 80
EXPOSE 443
FROM mcr.microsoft.com/dotnet/sdk:7.0 AS build
WORKDIR /src
COPY ["OliverBooth/OliverBooth.csproj", "OliverBooth/"]
2023-08-13 15:38:56 +00:00
RUN dotnet restore "OliverBooth/OliverBooth.csproj"
2023-05-26 18:05:44 +00:00
COPY . .
WORKDIR "/src/OliverBooth"
RUN dotnet build "OliverBooth.csproj" -c Release -o /app/build
2023-05-26 18:05:44 +00:00
FROM build AS publish
RUN dotnet publish "OliverBooth.csproj" -c Release -o /app/publish /p:UseAppHost=false
2023-05-26 18:05:44 +00:00
FROM base AS final
WORKDIR /app
COPY --from=publish /app/publish .
ENTRYPOINT ["dotnet", "OliverBooth.dll"]