File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,14 @@ RUN ~/.local/bin/uv sync --no-install-project --frozen &&\
14
14
chown -R 1000:1000 /app
15
15
16
16
FROM $BASE_IMAGE
17
- RUN apt update && apt install -y rsync git
17
+ ARG CEPH_VERSION=19.2.2
18
+ ARG CEPH_RELEASE=squid
19
+ RUN apt update && apt install -y rsync git gnupg2 curl ca-certificates lsb-release &&\
20
+ curl -fsSL https://download.ceph.com/keys/release.asc | gpg --dearmor -o /usr/share/keyrings/ceph.gpg &&\
21
+ echo "deb [signed-by=/usr/share/keyrings/ceph.gpg] https://download.ceph.com/debian-${CEPH_RELEASE}/ $(lsb_release -sc) main" > /etc/apt/sources.list.d/ceph.list &&\
22
+ apt update &&\
23
+ apt install -y ceph-common=${CEPH_VERSION}-1* &&\
24
+ rm -rf /var/lib/apt/lists/*
18
25
COPY --from=builder /usr/local/bin/kubectl /usr/local/bin/kubectl
19
26
RUN useradd -m -s /bin/bash hasadna
20
27
RUN mkdir /home/hasadna/app
You can’t perform that action at this time.
0 commit comments