fix: add ca-certificates and pkg-config to release Dockerfile
Some checks failed
Release / release (push) Failing after 1m10s
Some checks failed
Release / release (push) Failing after 1m10s
Add missing ca-certificates (for curl/mise install), pkg-config and libssl-dev (for cargo builds). Remove redundant cargo tool from mise.toml since it ships with rust.
This commit is contained in:
@@ -1,12 +1,15 @@
|
|||||||
FROM debian:trixie-slim
|
FROM debian:trixie-slim
|
||||||
|
|
||||||
RUN apt-get update && apt-get install -y --no-install-recommends \
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
||||||
|
ca-certificates \
|
||||||
curl \
|
curl \
|
||||||
git \
|
git \
|
||||||
build-essential \
|
build-essential \
|
||||||
|
pkg-config \
|
||||||
|
libssl-dev \
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
# Install mise
|
# Install mise to a location already on PATH
|
||||||
ENV MISE_INSTALL_PATH="/usr/local/bin/mise"
|
ENV MISE_INSTALL_PATH="/usr/local/bin/mise"
|
||||||
RUN curl https://mise.run | sh
|
RUN curl https://mise.run | sh
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user