From 462b2fe10cf45da3dbcb5ee20ca6dfb79f46e6b6 Mon Sep 17 00:00:00 2001 From: Jan Tuomi Date: Thu, 4 Nov 2021 13:34:02 +0200 Subject: Initial commit --- Dockerfile | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 Dockerfile (limited to 'Dockerfile') diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..b52cf2b --- /dev/null +++ b/Dockerfile @@ -0,0 +1,41 @@ +FROM node:15-alpine AS deps + +RUN apk add --no-cache libc6-compat +WORKDIR /app +COPY package.json package-lock.json ./ +RUN npm ci --only-prod + +FROM node:15-alpine as builder + +WORKDIR /app +COPY . . +COPY --from=deps /app/node_modules ./node_modules +RUN npm run export +RUN rm -r .next/cache + +FROM halverneus/static-file-server + +COPY ./out /web + +# FROM node:15-alpine as runner + +# WORKDIR /app +# ENV NODE_ENV production + +# # COPY --from=builder /app/next.config.js ./ +# COPY --from=builder /app/dist ./dist +# COPY --from=builder /app/public ./public +# COPY --from=builder /app/.next ./.next +# COPY --from=builder /app/node_modules ./node_modules +# COPY --from=builder /app/package.json ./package.json + +# RUN addgroup -g 1001 -S nodejs +# RUN adduser -S nextjs -u 1001 +# RUN chown -R nextjs:nodejs /app/.next +# USER nextjs + +# EXPOSE 3000 + +# RUN npx next telemetry disable + +# CMD ["npm", "run", "start"] -- cgit v1.3