You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
492 B
23 lines
492 B
6 years ago
|
#
|
||
6 years ago
|
FROM microsoft/dotnet:2.1.500-sdk-alpine3.7 AS builder
|
||
7 years ago
|
WORKDIR /source
|
||
|
COPY src/docker-compose-generator.csproj docker-compose-generator.csproj
|
||
|
# Cache some dependencies
|
||
|
RUN dotnet restore
|
||
|
COPY src/. .
|
||
|
RUN dotnet publish --output /app/ --configuration Release
|
||
|
|
||
6 years ago
|
#
|
||
6 years ago
|
FROM microsoft/dotnet:2.1.6-runtime-alpine3.7
|
||
6 years ago
|
WORKDIR /datadir
|
||
7 years ago
|
|
||
6 years ago
|
WORKDIR /app
|
||
7 years ago
|
ENV APP_DATADIR=/datadir
|
||
|
VOLUME /datadir
|
||
|
|
||
7 years ago
|
ENV INSIDE_CONTAINER=1
|
||
|
|
||
7 years ago
|
COPY --from=builder "/app" .
|
||
|
|
||
|
ENTRYPOINT ["dotnet", "docker-compose-generator.dll"]
|