noidb/Dockerfile

9 lines
276 B
Docker
Raw Normal View History

2024-04-25 02:15:50 +00:00
FROM docker.io/fedora:34
WORKDIR /home/src
RUN mkdir -p opt \
&& dnf -y update \
&& dnf -y install ccache git \
&& git clone https://github.com/scylladb/seastar.git --depth=1 --branch=master /opt/seastar \
&& /opt/seastar/install-dependencies.sh
CMD /bin/bash