You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
312 B
12 lines
312 B
FROM node:16 as builder
|
|
WORKDIR /usr/src/postamates_frontend
|
|
COPY package*.json ./
|
|
COPY yarn.lock ./
|
|
RUN yarn install
|
|
COPY . .
|
|
ARG REACT_APP_DOMAIN_URL=https://${DOMAIN}/
|
|
RUN yarn build
|
|
|
|
FROM nginx:1.23-alpine
|
|
COPY --from=builder /usr/src/postamates_frontend/dist /opt/site
|
|
COPY nginx.conf /etc/nginx/nginx.conf |