From ddc9f3bcec2f44f1fcce46e6a76525aa5a8a690d Mon Sep 17 00:00:00 2001 From: David Stevens Date: Mon, 10 Jun 2024 11:20:41 +0200 Subject: [PATCH] fix: Fix dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4bde552..e32e886 100644 --- a/Dockerfile +++ b/Dockerfile @@ -24,7 +24,7 @@ WORKDIR /app COPY --from=xx / / # Install host build dependencies. -RUN apk add --no-cache clang lld musl-dev git file libssl-dev pkg-config +RUN apk add --no-cache clang lld musl-dev git file libressl-dev pkgconfig # This is the architecture you’re building for, which is passed in by the builder. # Placing it here allows the previous steps to be cached across architectures. @@ -83,4 +83,4 @@ COPY --from=build /bin/$APP_NAME /bin/ EXPOSE 3000 # What the container should run when it is started. -ENTRYPOINT ["/bin/$APP_NAME"] +ENTRYPOINT ["/bin/prodzilla"]