Skip to content

Commit

Permalink
fix: Fix dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
stevensdavid committed Jun 10, 2024
1 parent 37adb56 commit ddc9f3b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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"]

0 comments on commit ddc9f3b

Please sign in to comment.