more docker sutff

This commit is contained in:
Evert Prants 2022-11-27 12:17:00 +02:00
parent 5530756407
commit 3b73a10b49
Signed by: evert
GPG Key ID: 1688DA83D222D0B5
2 changed files with 19 additions and 0 deletions

View File

@ -19,6 +19,9 @@ WORKDIR /app
COPY --chown=node:node --from=deps /app/node_modules ./node_modules
COPY --chown=node:node . .
ENV NODE_ENV production
ENV NEXT_PUBLIC_URL APP_NEXT_PUBLIC_URL
ENV NEXT_PUBLIC_UPLOADS_URL APP_NEXT_PUBLIC_UPLOADS_URL
RUN npm run build
RUN npm ci --omit=dev && npm cache clean --force
@ -35,10 +38,13 @@ ENV NODE_ENV production
COPY --chown=node:node --from=builder /app/node_modules ./node_modules
COPY --chown=node:node --from=builder /app/package*.json ./
COPY --chown=node:node --from=builder /app/entrypoint.sh ./
COPY --chown=node:node --from=builder /app/next.config.js ./
COPY --chown=node:node --from=builder /app/public ./public
COPY --chown=node:node --from=builder /app/.next ./.next
EXPOSE 3000
ENTRYPOINT ["/app/entrypoint.sh"]
CMD ["node_modules/.bin/next", "start"]

13
entrypoint.sh Executable file
View File

@ -0,0 +1,13 @@
#!/bin/sh
set -Ex
function apply_path {
test -n "$NEXT_PUBLIC_URL"
test -n "$NEXT_PUBLIC_UPLOADS_URL"
find /app/.next \( -type d -name .git -prune \) -o -type f -print0 | xargs -0 sed -i "s#APP_NEXT_PUBLIC_URL#$NEXT_PUBLIC_URL#g"
find /app/.next \( -type d -name .git -prune \) -o -type f -print0 | xargs -0 sed -i "s#APP_NEXT_PUBLIC_UPLOADS_URL#$NEXT_PUBLIC_UPLOADS_URL#g"
}
apply_path
exec "$@"