Dockerfiles: ensure ca-certificates are present

This commit is contained in:
Thomas Kolb 2024-08-27 21:55:47 +02:00
parent 521b139db7
commit 1b48544beb
2 changed files with 2 additions and 2 deletions

View file

@ -1,7 +1,7 @@
FROM debian:stable FROM debian:stable
# for basic Forgejo + AsciiDoctor support # for basic Forgejo + AsciiDoctor support
RUN apt update && apt install -y --no-install-recommends nodejs git ruby-rubygems make && apt clean RUN apt update && apt install -y --no-install-recommends nodejs git ruby-rubygems make ca-certificates && apt clean
RUN gem install asciidoctor asciidoctor-diagram RUN gem install asciidoctor asciidoctor-diagram

View file

@ -1,7 +1,7 @@
FROM debian:stable FROM debian:stable
# for Forgejo Actions # for Forgejo Actions
RUN apt update && apt install -y --no-install-recommends nodejs git && apt clean RUN apt update && apt install -y --no-install-recommends nodejs git ca-certificates && apt clean
# Hamnet70 build dependencies # Hamnet70 build dependencies
RUN apt install -y --no-install-recommends cmake make gcc libc-dev libliquid-dev libhackrf-dev libfec-dev libfftw3-dev && apt clean RUN apt install -y --no-install-recommends cmake make gcc libc-dev libliquid-dev libhackrf-dev libfec-dev libfftw3-dev && apt clean