Skip to content
Merged
Changes from all 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
4 changes: 3 additions & 1 deletion webui/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ FROM almalinux:9
ARG TAG

LABEL stage=production
ENV NODE_ENV=production

RUN dnf -y update && \
dnf -y module reset nodejs && \
dnf -y module enable nodejs:20 && \
Expand Down Expand Up @@ -41,7 +43,7 @@ RUN curl https://raw.githubusercontent.com/rucio/rucio/master/tools/merge_rucio_
RUN git clone --depth 1 -b ${TAG} -- https://github.com/rucio/webui.git ${RUCIO_WEBUI_PATH}

RUN npm i -g pm2
RUN npm install
RUN npm install --omit=dev

COPY docker-entrypoint.sh /
COPY httpd.conf.j2 /tmp/
Expand Down