frequi_origin/Dockerfile
dependabot[bot] ba08cbea12
Bump nginx from 1.21.0-alpine to 1.21.1-alpine
Bumps nginx from 1.21.0-alpine to 1.21.1-alpine.

---
updated-dependencies:
- dependency-name: nginx
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2021-07-09 05:01:13 +00:00

26 lines
501 B
Docker

FROM node:16.4.2-alpine as ui-builder
RUN mkdir /app
WORKDIR /app
# ENV PATH /usr/src/app/node_modules/.bin:$PATH
COPY package.json /app/package.json
COPY yarn.lock /app/yarn.lock
RUN apk add --update --no-cache python3 g++ make\
&& yarn \
&& apk del python3 g++ make
RUN yarn global add @vue/cli
COPY . /app
RUN yarn build
FROM nginx:1.21.1-alpine
COPY --from=ui-builder /app/dist /etc/nginx/html
COPY --from=ui-builder /app/nginx.conf /etc/nginx/nginx.conf
EXPOSE 80
CMD ["nginx"]