mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-01-23 02:36:05 +00:00
41 lines
660 B
Docker
41 lines
660 B
Docker
# builds the app and runs the webversion inside a docker container
|
|
|
|
### build ###
|
|
|
|
# base image
|
|
FROM node:12 as build
|
|
|
|
# add app
|
|
COPY . /app
|
|
|
|
# set working directory
|
|
WORKDIR /app
|
|
|
|
# add `/app/node_modules/.bin` to $PATH
|
|
ENV PATH /app/node_modules/.bin:$PATH
|
|
|
|
RUN yarn
|
|
RUN yarn global add @angular/cli
|
|
|
|
# run linter
|
|
RUN yarn lint
|
|
|
|
# generate build
|
|
RUN yarn buildFrontend:prodWeb
|
|
|
|
### serve ###
|
|
|
|
# base image
|
|
FROM nginx:1-alpine
|
|
|
|
# environmental variables
|
|
ENV PORT=80
|
|
|
|
# copy artifact build from the 'build environment'
|
|
COPY --from=build /app/dist /usr/share/nginx/html
|
|
|
|
# expose port: defaults to 80
|
|
EXPOSE $PORT
|
|
|
|
# run nginx
|
|
CMD ["nginx", "-g", "daemon off;"]
|