Commit 5802bc5f authored by Anton Borisov's avatar Anton Borisov

Add new file

parent 9b119d08
FROM microsoft/dotnet:2.2-sdk-alpine AS builder
WORKDIR /app
COPY ./Stratis.Guru ./
RUN dotnet build
RUN dotnet publish -c Release --framework netcoreapp2.2 --runtime alpine-x64 -o out
FROM microsoft/dotnet:2.2-runtime-alpine
WORKDIR /app
COPY --from=builder /app/out .
COPY ./appsettings.json .
RUN mkdir -p /app/Documentation/site
ENTRYPOINT ["dotnet", "Stratis.Guru.dll"]
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment