Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 9 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,24 +1,27 @@
#moving to ubuntu instead of debian to solve high vulnerabilities
FROM ubuntu:noble-20240605
FROM ubuntu:noble-20250529

RUN apt-get update && \
apt-get install -y curl bash openssl git && \
apt-get clean

RUN curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash && \
apt-get install git-lfs=3.5.1 && \
apt-get install git-lfs=3.6.1 && \
git lfs install

#installing busybox
ARG BUSYBOX_VERSION=1:1.36.1-6ubuntu3
ARG BUSYBOX_VERSION=1:1.36.1-6ubuntu3.1

RUN apt-get update && \
apt-get install busybox=${BUSYBOX_VERSION} && \
ln -s /bin/busybox /usr/bin/[[ && \
apt-get reinstall -y libpam-modules systemd

RUN apt-get install busybox=${BUSYBOX_VERSION} && \
ln -s /bin/busybox /usr/bin/[[

COPY ./start.sh /run/start.sh
RUN chmod +x /run/start.sh

# USER nodeuser

RUN addgroup --gid 3000 nodegroup \
&& adduser --uid 3000 --home /home/nodeuser --ingroup nodegroup --shell /bin/sh --gecos "" --disabled-password nodeuser
USER nodeuser
Expand Down
2 changes: 1 addition & 1 deletion service.yaml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version: 10.3.1
version: 10.3.2