From f712491d05a8ed9bdc401e001fc631e795c109c8 Mon Sep 17 00:00:00 2001 From: Joao Lippi Date: Thu, 9 Dec 2021 17:02:19 -0300 Subject: [PATCH] Prepare Docker for deployment #17 --- .dockerignore | 7 ++++++ Dockerfile | 63 +++++++++++++++++++++++++++++++++++++++++++++++++++ package.json | 2 +- 3 files changed, 71 insertions(+), 1 deletion(-) create mode 100644 .dockerignore create mode 100644 Dockerfile diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..eb0bb63 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,7 @@ +Dockerfile +.dockerignore +node_modules +npm-debug.log +README.md +.next +.env \ No newline at end of file diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..c473655 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,63 @@ +# Install dependencies only when needed +FROM node:14-alpine AS deps +# Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed. +RUN apk add --no-cache libc6-compat +WORKDIR /app +COPY package.json yarn.lock ./ +RUN yarn install --frozen-lockfile + +# Rebuild the source code only when needed +FROM node:14-alpine AS builder +WORKDIR /app +COPY . . +COPY --from=deps /app/node_modules ./node_modules + +# Build args and envs +ARG NODE_ENV=development +ARG DB_HOST +ARG DB_NAME +ARG DB_USER +ARG DB_PASS +ARG JWT_SECRET + +ENV NODE_ENV=$NODE_ENV +ENV DB_HOST=$DB_HOST +ENV DB_NAME=$DB_NAME +ENV DB_USER=$DB_USER +ENV DB_PASS=$DB_PASS +ENV JWT_SECRET=$JWT_SECRET + +# Makes .env file +RUN echo "DATABASE_URL=\"mysql://${DB_USER}:${DB_PASS}@${DB_HOST}:3306/${DB_NAME}?useSSL=false\"" > .env +RUN echo "JWT_SECRET=\"${JWT_SECRET}\"" >> .env + +RUN yarn build + +# Production image, copy all the files and run next +FROM node:14-alpine AS runner +WORKDIR /app + +RUN addgroup -g 1001 -S nodejs +RUN adduser -S nextjs -u 1001 + +# You only need to copy next.config.js if you are NOT using the default configuration +# COPY --from=builder /app/next.config.js ./ +COPY --from=builder /app/public ./public +COPY --from=builder --chown=nextjs:nodejs /app/.next ./.next +COPY --from=builder /app/node_modules ./node_modules +COPY --from=builder /app/package.json ./package.json +COPY --from=builder /app/.env ./.env + + +USER nextjs + +EXPOSE 3000 + +ENV PORT 3000 + +# Next.js collects completely anonymous telemetry data about general usage. +# Learn more here: https://nextjs.org/telemetry +# Uncomment the following line in case you want to disable telemetry. +# ENV NEXT_TELEMETRY_DISABLED 1 + +CMD ["node_modules/.bin/next", "start"] \ No newline at end of file diff --git a/package.json b/package.json index 765e379..9c39633 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "migrate": "npx prisma migrate dev", "setup": "npx prisma db push && npx prisma db seed && husky install", "studio": "npx prisma studio", - "build": "next build", + "build": "npx prisma generate && next build", "lint": "eslint --fix .", "type-check": "tsc", "ggez": "eslint --fix . && tsc",