2023-10-24 15:29:35 -05:00
|
|
|
# Build step #1: build the React front end
|
|
|
|
FROM node:18 as build-step
|
|
|
|
WORKDIR /frontend
|
|
|
|
ENV PATH /frontend/node_modules/.bin:$PATH
|
2023-10-31 13:47:40 +09:00
|
|
|
COPY frontend/package.json frontend/yarn.lock frontend/tsconfig.json frontend/.env ./
|
2023-10-24 15:29:35 -05:00
|
|
|
COPY frontend/src ./src
|
|
|
|
COPY frontend/public ./public
|
|
|
|
RUN yarn install
|
|
|
|
RUN yarn build --production
|
|
|
|
|
|
|
|
# Build step #2: build an nginx container
|
|
|
|
FROM nginx:stable-alpine
|
|
|
|
COPY --from=build-step /frontend/build /usr/share/nginx/html
|
|
|
|
COPY deployment/nginx.default.conf /etc/nginx/conf.d/default.conf
|