Skip to content
This repository has been archived by the owner on Mar 7, 2023. It is now read-only.

Commit

Permalink
Merge pull request #75 from m-ildefons/system-boost-radosgw-container
Browse files Browse the repository at this point in the history
radosgw-container: install system boost libraries
  • Loading branch information
m-ildefons authored Jun 15, 2022
2 parents 35f250d + bea7ff2 commit e11129e
Showing 1 changed file with 24 additions and 2 deletions.
26 changes: 24 additions & 2 deletions build/Dockerfile.build-container
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,34 @@ RUN zypper -n install libblkid1 \
libtcmalloc4 \
libfmt8 \
liboath0 \
libicu71
libicu71 \
libboost_atomic1_79_0 \
libboost_chrono1_79_0 \
libboost_context1_79_0 \
libboost_coroutine1_79_0 \
libboost_date_time1_79_0 \
libboost_filesystem1_79_0 \
libboost_iostreams1_79_0 \
libboost_program_options1_79_0 \
libboost_random1_79_0 \
libboost_regex1_79_0 \
libboost_serialization1_79_0 \
libboost_system1_79_0 \
libboost_thread1_79_0 \
&& zypper clean --all

RUN mkdir -p /data

COPY ./bin/radosgw /usr/bin/radosgw
COPY ./lib/*.so* /usr/lib64/
COPY [ "./lib/libradosgw.so", \
"./lib/libradosgw.so.2", \
"./lib/libradosgw.so.2.0.0", \
"./lib/librados.so", \
"./lib/librados.so.2", \
"./lib/librados.so.2.0.0", \
"./lib/libceph-common.so", \
"./lib/libceph-common.so.2", \
"/usr/lib64/" ]

EXPOSE 7480

Expand Down

0 comments on commit e11129e

Please sign in to comment.