Pages Product

This commit is contained in:
2022-01-28 16:26:43 +07:00
parent f638ca70f7
commit c1680822df
2 changed files with 8 additions and 2 deletions

View File

@@ -3,6 +3,8 @@ WORKDIR /usr/src/app
COPY package.json yarn.lock ./
RUN yarn
COPY . ./
ARG NEXT_PUBLIC_BASE_URL
ENV REACT_APP_API_BASE_URL $NEXT_PUBLIC_BASE_URL
RUN yarn build
FROM nginx:stable-alpine