Docker deployment #6

Merged
brandonegg merged 20 commits from dokkku-deploy into main 2024-02-28 14:59:14 -06:00
Showing only changes of commit 4da489ba52 - Show all commits

View File

@ -1,7 +1,4 @@
ARG RUNNER_ENV=production
ARG DATABASE_URL
ARG NEXTAUTH_URL
ARG JWT_SECRET
FROM node:20-alpine AS base
@ -20,6 +17,9 @@ RUN \
fi
FROM base AS builder-production
ARG DATABASE_URL
ARG NEXTAUTH_URL
ARG JWT_SECRET
ENV DATABASE_URL ${DATABASE_URL}
ENV NEXTAUTH_URL ${NEXTAUTH_URL}