Compare commits

..

1 Commits

Author SHA1 Message Date
sbaizet
4e3dc52db3 fix: add ca-certificates on go-rust-builder intermediate image (#1428) 2024-07-11 15:05:55 +08:00

View File

@@ -7,7 +7,7 @@ FROM ubuntu:20.04
RUN apt-get update && ln -fs /usr/share/zoneinfo/America/New_York /etc/localtime
# Install basic packages
RUN apt-get install build-essential curl wget git pkg-config -y
RUN apt-get install build-essential curl wget git pkg-config ca-certificates -y
# Install dev-packages
RUN apt-get install libclang-dev libssl-dev llvm -y