-
Notifications
You must be signed in to change notification settings - Fork 1
/
Dockerfile.admin
35 lines (32 loc) · 1.06 KB
/
Dockerfile.admin
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
FROM node:16 AS builder
# set working directory
WORKDIR /app
# install app dependencies
#copies package.json and package-lock.json to Docker environment
# COPY package-lock.json ./
COPY package.json ./
COPY yarn.lock ./
# Installs all node packages
# RUN npm ci
RUN npm install yarn --global --force
RUN yarn install --immutable --immutable-cache --check-cache
# Copies everything over to Docker environment
COPY . ./
RUN yarn install --immutable
# RUN npm run build
RUN yarn admin:build
#Stage 2
#######################################
#pull the official nginx:1.19.0 base image
FROM nginx:1.19.0
#copies React to the container directory
# Set working directory to nginx resources directory
# WORKDIR /usr/share/nginx/html
COPY ./nginx/admin.conf /etc/nginx/conf.d/default.conf
# Remove default nginx static resources
RUN rm -rf ./usr/share/nginx/html/*
# Copies static resources from builder stage
COPY --from=builder /app/apps/admin/dist /usr/share/nginx/html/
# Containers run nginx with global directives and daemon off
EXPOSE 3100
ENTRYPOINT ["nginx", "-g", "daemon off;"]