-
Notifications
You must be signed in to change notification settings - Fork 2
/
Dockerfile
50 lines (38 loc) · 1.58 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
################################################################################
# Run-time dependencies
################################################################################
FROM node:18-alpine AS deps
WORKDIR /app
COPY package.json yarn.lock ./
RUN yarn --frozen-lockfile --production=true
################################################################################
# Build-time dependencies
################################################################################
FROM deps AS build-deps
WORKDIR /app
RUN yarn --frozen-lockfile --production=false
################################################################################
# Builder
################################################################################
FROM build-deps AS builder
COPY . .
ENV NEXT_PUBLIC_FK_MEDIA https://beta.frikanalen.no/media
ENV NEXT_PUBLIC_FK_GRAPHQL https://beta.frikanalen.no/graphql
ENV NEXT_PUBLIC_FK_API https://beta.frikanalen.no/api/v2
ENV NEXT_PUBLIC_FK_UPLOAD https://beta.frikanalen.no/api/v2/media/upload
ENV NEXT_PUBLIC_FK_MEDIAPROC https://beta.frikanalen.no/api/v2/media
RUN yarn build
################################################################################
# Runner
################################################################################
FROM node:18-alpine AS runner
WORKDIR /app
ENV NODE_ENV=production
COPY --from=builder /app/next.config.js ./
COPY --from=builder /app/public ./public
COPY --from=builder /app/.next ./.next
COPY --chown=node --from=deps /app/node_modules ./node_modules
COPY package.json yarn.lock ./
USER node
CMD yarn start
EXPOSE 3000