Attempt at dynamic env vars, thanx TheBestMoshe
Some checks failed
continuous-integration/drone/push Build is failing
Some checks failed
continuous-integration/drone/push Build is failing
b5b0eb5a97
This commit is contained in:
parent
5a9fed9318
commit
e1eb849679
@ -8,10 +8,8 @@ RUN yarn install --frozen-lockfile
|
|||||||
FROM node:14 as builder
|
FROM node:14 as builder
|
||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
ARG BASE_URL
|
ENV BASE_URL=APP_BASE_URL_VAR
|
||||||
ENV BASE_URL $BASE_URL
|
ENV NEXT_PUBLIC_APP_URL=APP_NEXT_PUBLIC_APP_URL_VAR
|
||||||
ARG NEXT_PUBLIC_APP_URL
|
|
||||||
ENV NEXT_PUBLIC_APP_URL $NEXT_PUBLIC_APP_URL
|
|
||||||
|
|
||||||
COPY calendso .
|
COPY calendso .
|
||||||
|
|
||||||
@ -30,7 +28,7 @@ COPY --from=builder /app/next-i18next.config.js ./
|
|||||||
COPY --from=builder /app/public ./public
|
COPY --from=builder /app/public ./public
|
||||||
COPY --from=builder /app/.next ./.next
|
COPY --from=builder /app/.next ./.next
|
||||||
COPY --from=builder /app/package.json ./package.json
|
COPY --from=builder /app/package.json ./package.json
|
||||||
COPY scripts scripts
|
COPY scripts scripts
|
||||||
|
|
||||||
EXPOSE 3000
|
EXPOSE 3000
|
||||||
CMD ["/app/scripts/start.sh"]
|
CMD ["/app/scripts/start.sh"]
|
||||||
|
@ -1,6 +1,12 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
set -x
|
set -x
|
||||||
|
|
||||||
|
# Set environment variables
|
||||||
|
echo BASE_URL $BASE_URL
|
||||||
|
echo NEXT_PUBLIC_APP_URL "$NEXT_PUBLIC_APP_URL"
|
||||||
|
find \( -type d -name .git -prune \) -o -type f -print0 | xargs -0 sed -i "s#APP_NEXT_PUBLIC_APP_URL_VAR#$NEXT_PUBLIC_APP_URL#g"
|
||||||
|
find \( -type d -name .git -prune \) -o -type f -print0 | xargs -0 sed -i "s#APP_BASE_URL_VAR#$BASE_URL#g"
|
||||||
|
|
||||||
/app/scripts/wait-for-it.sh ${DATABASE_HOST} -- echo "database is up"
|
/app/scripts/wait-for-it.sh ${DATABASE_HOST} -- echo "database is up"
|
||||||
npx prisma migrate deploy
|
npx prisma migrate deploy
|
||||||
yarn start
|
yarn start
|
||||||
|
Loading…
Reference in New Issue
Block a user