Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Aligning docker builds #174

Merged
merged 1 commit into from
Nov 29, 2024
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
21 changes: 10 additions & 11 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,27 +1,26 @@
FROM registry.access.redhat.com/ubi9/nodejs-20:latest AS build
FROM registry.access.redhat.com/ubi9:latest

USER root

RUN dnf update -y && dnf upgrade -y && \
command -v yarn || npm install -g yarn
dnf module enable nodejs:20 nginx:1.24 -y && \
dnf install -y nodejs nginx && \
npm install -g yarn

RUN yarn config set network-concurrency 1 && \
yarn config set network-timeout 100000

RUN mkdir -p /var/cache/nginx /var/log/nginx /run && \
chmod -R 777 /var/cache/nginx /var/log/nginx /run

WORKDIR /usr/src/app
ADD package.json yarn.lock ./
COPY package.json yarn.lock ./
RUN yarn install --frozen-lockfile --ignore-optional

ADD . .
COPY . .
RUN yarn build

FROM registry.access.redhat.com/ubi9/nginx-124:latest

USER root

RUN dnf update -y && dnf upgrade -y

COPY --from=build /usr/src/app/dist /usr/share/nginx/html
COPY dist /usr/share/nginx/html
COPY entrypoint.sh /usr/share/nginx/html/entrypoint.sh

USER 1001
Expand Down
Loading