summaryrefslogtreecommitdiffstats
path: root/src/seastar/docker
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-21 11:54:28 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-21 11:54:28 +0000
commite6918187568dbd01842d8d1d2c808ce16a894239 (patch)
tree64f88b554b444a49f656b6c656111a145cbbaa28 /src/seastar/docker
parentInitial commit. (diff)
downloadceph-e6918187568dbd01842d8d1d2c808ce16a894239.tar.xz
ceph-e6918187568dbd01842d8d1d2c808ce16a894239.zip
Adding upstream version 18.2.2.upstream/18.2.2
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/seastar/docker')
-rw-r--r--src/seastar/docker/dev/Dockerfile16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/seastar/docker/dev/Dockerfile b/src/seastar/docker/dev/Dockerfile
new file mode 100644
index 000000000..2f2fa536d
--- /dev/null
+++ b/src/seastar/docker/dev/Dockerfile
@@ -0,0 +1,16 @@
+FROM ubuntu:kinetic
+RUN apt -y update \
+ && apt -y install build-essential \
+ && apt -y install gcc-12 g++-12 gcc-11 g++-11 pandoc \
+ && update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-12 12 \
+ && update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-12 12 \
+ && update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-11 11 \
+ && update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-11 11 \
+ && apt -y install clang-15 clang-14 \
+ && update-alternatives --install /usr/bin/clang clang /usr/bin/clang-15 15 \
+ && update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-15 15 \
+ && update-alternatives --install /usr/bin/clang clang /usr/bin/clang-14 14 \
+ && update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-14 14
+COPY install-dependencies.sh /tmp/
+RUN bash /tmp/install-dependencies.sh
+CMD /bin/bash