Commit 96b94bf6 authored by Anton Borisov's avatar Anton Borisov

Add new file

parent c2771f30
FROM microsoft/dotnet:2.1-sdk-alpine AS builder
WORKDIR /app
COPY ./Sources ./
RUN dotnet build
RUN cd DeStream.DeStreamD \
&& dotnet publish -c Release --framework netcoreapp2.1 --runtime alpine-x64 -o out
FROM microsoft/dotnet:2.1-runtime-alpine
WORKDIR /app
COPY --from=builder /app/DeStream.DeStreamD/out .
ENTRYPOINT ["dotnet", "DeStream.DeStreamD.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