Skip to content

Commit

Permalink
fix: Fix broken Containerfile
Browse files Browse the repository at this point in the history
The `Containerfile` had quietly been broken. It was missing the
`ca-certificates` package, which `curl` needed to run later steps. This commit
adds the missing package.

It also bumps the `Containerfile` to version `3.7.0`, the current version.

Signed-off-by: Andrew Lilley Brinker <[email protected]>
  • Loading branch information
alilleybrinker committed Nov 13, 2024
1 parent 7d49cd8 commit dc20756
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dist/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

FROM node:bookworm-slim

ARG HC_VERSION="3.6.3"
ARG HC_VERSION="3.7.0"

WORKDIR /app

RUN set -eux \
&& apt-get update \
&& apt-get install --no-install-recommends -y git curl xz-utils \
&& apt-get install --no-install-recommends -y ca-certificates git curl xz-utils \
&& rm -rf /var/lib/apt/lists/* \
&& adduser --disabled-password hc_user \
&& chown -R hc_user /app
Expand Down

0 comments on commit dc20756

Please sign in to comment.