-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
42 lines (27 loc) · 1.2 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
# syntax=docker/dockerfile:1
###################################################################################################
# STAGE 1: BUILD #
###################################################################################################
# extend the official Node.js Alpine image
FROM node:22.11.0-alpine AS build
# Create app directory
WORKDIR /usr/src/app
# install the dependencies
COPY package*.json ./
RUN npm ci --force
# copy the source code
COPY . .
# initialize the build's environment
ARG NODE_ENV
# build the app
RUN npm run build-${NODE_ENV}
###################################################################################################
# STAGE 2: RUN #
###################################################################################################
# extend the official nginx Alpine image
FROM nginx:1.27.0-alpine
# copy the build's outputs as well as the nginx's configuration
COPY --from=build /usr/src/app/dist /usr/share/nginx/html
COPY /nginx.conf /etc/nginx/conf.d/default.conf
# expose the port
EXPOSE 8090