Skip to content
Snippets Groups Projects
Commit 93fde9f0 authored by Remi  PLANEL's avatar Remi PLANEL
Browse files

test

parent b54dea56
No related branches found
No related tags found
1 merge request!7K8s deploy
Pipeline #111493 canceled with stages
in 1 minute and 30 seconds
ARG BASE_URL=/
### Stage Install ### ### Stage Install ###
FROM node:19.5-bullseye-slim as install FROM node:19.5-bullseye-slim as install
...@@ -41,10 +39,15 @@ CMD [ "node", "server/index.mjs"] ...@@ -41,10 +39,15 @@ CMD [ "node", "server/index.mjs"]
### STAGE: Generate ### ### STAGE: Generate ###
FROM node:19.5-bullseye-slim as generate FROM node:19.5-bullseye-slim as generate
ARG BASE_URL=/
RUN echo "base_url"
RUN echo ${BASE_URL}
ENV NUXT_APP_BASE_URL=${BASE_URL} ENV NUXT_APP_BASE_URL=${BASE_URL}
RUN echo "the base url env var" RUN echo "the base url env var"
RUN echo ${NUXT_APP_BASE_URL} RUN echo ${NUXT_APP_BASE_URL}
WORKDIR /usr/src/app WORKDIR /usr/src/app
COPY --from=install /usr/src/app ./ COPY --from=install /usr/src/app ./
COPY . /usr/src/app COPY . /usr/src/app
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment