Skip to content

Commit

Permalink
Added oidc config.
Browse files Browse the repository at this point in the history
  • Loading branch information
dasscheman committed Jul 2, 2024
1 parent 66ee4ce commit e5d78f2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docker/frontend.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ WORKDIR /var/www

RUN apk add --no-cache git

COPY --chown=node:node package.json package-lock.json* ./
COPY --chown=node:node package.json package-lock.json* vite.config.js ./

#Naar het voorbeeld van:
#https://github.com/UtrechtUniversity/containerplatform-docs Apache rootless openshift
Expand All @@ -14,4 +14,4 @@ RUN chgrp -R 0 /var/www && \

RUN npm install
EXPOSE 7050
CMD "npm" "run" "build"
CMD "npm" "run" "dev"
5 changes: 3 additions & 2 deletions openshift/frontend.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,13 @@ WORKDIR /var/www

RUN apk add --no-cache git

COPY --chown=node:node package.json package-lock.json* ./
COPY --chown=node:node package.json package-lock.json* vite.config.js ./

#Naar het voorbeeld van:
#https://github.com/UtrechtUniversity/containerplatform-docs Apache rootless openshift
RUN chgrp -R 0 /var/www && \
chmod -R g=u /var/www

RUN npm install
EXPOSE 7050
CMD "npm" "run" "build"
CMD "npm" "run" "dev"

0 comments on commit e5d78f2

Please sign in to comment.