This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM microsoft/aspnetcore-build:1.0-2.0 AS build-env | |
WORKDIR /generator | |
COPY . ./application/ | |
RUN dotnet restore application/WebApplicationFolder/WebApplication.csproj | |
WORKDIR /generator | |
RUN dotnet publish application/WebApplicationFolder/WebApplication.csproj -c Release -o /publish |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3' | |
services: | |
webapp: | |
image: webapplication | |
environment: | |
- ASPNETCORE_ENVIRONMENT=Development | |
build: | |
context: . | |
dockerfile: Dockerfile |