Testing Debug Build Mode
This commit is contained in:
parent
544e949d5f
commit
28d157bffc
1 changed files with 2 additions and 2 deletions
|
|
@ -1,7 +1,7 @@
|
|||
FROM mcr.microsoft.com/dotnet/sdk:5.0-alpine AS builder
|
||||
WORKDIR /lrm
|
||||
COPY . .
|
||||
ARG BUILD_MODE="Release"
|
||||
ARG BUILD_MODE="Debug"
|
||||
RUN dotnet publish \
|
||||
--output /build/ \
|
||||
--configuration $BUILD_MODE \
|
||||
|
|
@ -12,4 +12,4 @@ WORKDIR /lrm
|
|||
COPY --from=builder /build/ .
|
||||
ENV LRM_CONFIG_PATH="/config/config.json"
|
||||
CMD [ "./LRM" ]
|
||||
ENTRYPOINT [ "./LRM" ]
|
||||
ENTRYPOINT [ "./LRM" ]
|
||||
|
|
|
|||
Loading…
Reference in a new issue