Skip to content

Commit

Permalink
Explicitly add libcurl in dockerfiles
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasten committed Dec 4, 2023
1 parent 46047d9 commit 82511ce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions dockerfiles/Dockerfile.cli
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ RUN chmod +x linuxdeploy-x86_64.AppImage && touch marblerun.svg \
-imarblerun.svg \
-e/mrbuild/marblerun \
-l/usr/lib/x86_64-linux-gnu/libdcap_quoteprov.so.1 \
-l/usr/lib/x86_64-linux-gnu/libcurl.so.4 \
# workaround for hardcoded CA bundle path in libcurl
&& cd marblerun.AppDir/usr \
&& mkdir lib-fedora \
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/Dockerfile.coordinator
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ COPY --from=build /mrbuild/marblerun /marblerun-ubuntu-22.04
FROM ubuntu:jammy-20231128 AS release
ARG PSW_VERSION=2.22.100.3-jammy1
ARG DCAP_VERSION=1.19.100.3-jammy1
RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates wget \
RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates libcurl4 wget \
&& wget -qO /etc/apt/keyrings/intel-sgx-keyring.asc https://download.01.org/intel-sgx/sgx_repo/ubuntu/intel-sgx-deb.key \
&& echo 'deb [signed-by=/etc/apt/keyrings/intel-sgx-keyring.asc arch=amd64] https://download.01.org/intel-sgx/sgx_repo/ubuntu jammy main' > /etc/apt/sources.list.d/intel-sgx.list \
&& apt-get update && apt-get install -y --no-install-recommends \
Expand Down

0 comments on commit 82511ce

Please sign in to comment.