Browse Source
Merge pull request #141 from jxlwqq/patch-2
use ENTRYPOINT instead of CMD
pull/142/head
yedf2
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
helper/Dockerfile-release
|
|
@ -12,4 +12,4 @@ FROM --platform=$TARGETPLATFORM alpine:3.14 |
|
|
COPY --from=builder /app/dtm/dtm /app/dtm/ |
|
|
COPY --from=builder /app/dtm/dtm /app/dtm/ |
|
|
ENV IS_DOCKER=1 |
|
|
ENV IS_DOCKER=1 |
|
|
WORKDIR /app/dtm |
|
|
WORKDIR /app/dtm |
|
|
CMD ["/app/dtm/dtm"] |
|
|
ENTRYPOINT ["/app/dtm/dtm"] |
|
|
|