fishbait/LoadBalancerProject-DONT-IMPORT-INTO-UNITY/Dockerfile
2021-04-06 01:55:52 -03:00

16 lines
No EOL
434 B
Docker

FROM mcr.microsoft.com/dotnet/sdk:5.0-alpine AS builder
WORKDIR /lrm
COPY . .
RUN [\
"dotnet", "publish", \
"--output", "/build/", \
"--configuration", "Release",\
"--no-self-contained", \
"." ]
FROM mcr.microsoft.com/dotnet/runtime:5.0-alpine
WORKDIR /lrm-lb
COPY --from=builder /build/ .
ENV LRM_LB_CONFIG_PATH="/config/config-load-balancer.json"
CMD [ "./LRM_LoadBalancer" ]
ENTRYPOINT [ "./LRM_LoadBalancer" ]