2021-07-02 23:12:08 +00:00
|
|
|
FROM node:14-alpine as deps
|
2021-08-12 20:54:41 +00:00
|
|
|
|
|
|
|
RUN apk add --no-cache libc6-compat
|
2021-07-02 23:12:08 +00:00
|
|
|
WORKDIR /app
|
2021-08-12 21:45:58 +00:00
|
|
|
COPY calendso/package.json calendso/yarn.lock ./
|
2021-07-02 23:12:08 +00:00
|
|
|
COPY calendso/prisma prisma
|
2021-08-12 20:59:11 +00:00
|
|
|
RUN yarn install --frozen-lockfile
|
2021-07-02 23:12:08 +00:00
|
|
|
|
|
|
|
FROM node:14-alpine as builder
|
|
|
|
WORKDIR /app
|
|
|
|
COPY calendso .
|
|
|
|
COPY --from=deps /app/node_modules ./node_modules
|
2021-08-12 20:54:41 +00:00
|
|
|
RUN yarn build && yarn install --production --ignore-scripts --prefer-offline
|
2021-07-02 23:12:08 +00:00
|
|
|
|
|
|
|
FROM node:14-alpine as runner
|
|
|
|
WORKDIR /app
|
|
|
|
ENV NODE_ENV production
|
|
|
|
|
2021-08-12 20:54:41 +00:00
|
|
|
COPY --from=builder /app/next.config.js ./
|
2021-07-02 23:12:08 +00:00
|
|
|
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
|
|
|
|
COPY --from=builder /app/prisma ./prisma
|
|
|
|
COPY scripts scripts
|
|
|
|
EXPOSE 3000
|
2021-08-12 20:54:41 +00:00
|
|
|
CMD ["/app/scripts/start.sh"]
|