-
-
Notifications
You must be signed in to change notification settings - Fork 33
/
Dockerfile
35 lines (27 loc) · 926 Bytes
/
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
# ---- Base Alpine with installed Node ----
FROM node:14-alpine3.14 AS base
# install node
RUN apk add --update \
nghttp2
# ---- Install dependencies ----
FROM base AS build
WORKDIR /app
COPY . .
# install dependencies
# remove package-lock.json with lockVersion: 1 due to problem described in the https://github.com/asyncapi/.github/issues/123
# remove first run and switch to the `npm ci` when mentioned issue will be resolved
RUN rm package-lock.json; npm install
# build to a production Javascript
RUN npm run build:prod
# ---- Serve ----
FROM base AS release
WORKDIR /app
COPY --from=build /app/dist ./dist
# A wildcard is used to ensure both package.json AND package-lock.json are copied
COPY --from=build /app/package* ./
# install only production dependencies (defined in "dependencies")
RUN npm ci --only=production
# copy OpenaAPI document
COPY openapi.yaml ./
EXPOSE 80
CMD ["npm", "run", "start:docker"]