Dockerfiles: ensure ca-certificates are present
This commit is contained in:
parent
521b139db7
commit
1b48544beb
|
@ -1,7 +1,7 @@
|
|||
FROM debian:stable
|
||||
|
||||
# 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
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
FROM debian:stable
|
||||
|
||||
# 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
|
||||
RUN apt install -y --no-install-recommends cmake make gcc libc-dev libliquid-dev libhackrf-dev libfec-dev libfftw3-dev && apt clean
|
||||
|
|
Loading…
Reference in a new issue