oneuptime/LighthouseRunner/Dockerfile

59 lines
1.1 KiB
Docker
Raw Normal View History

2021-06-30 11:56:08 +00:00
#
2022-04-11 13:11:16 +00:00
# LighthouseRunner Dockerfile
2021-06-30 11:56:08 +00:00
#
# Pull base image nodejs image.
2022-03-15 21:44:43 +00:00
FROM node:alpine
2021-06-30 11:56:08 +00:00
2022-01-18 12:34:39 +00:00
# Install bash.
RUN apk update && apk add bash && apk add curl
2021-08-08 12:02:26 +00:00
#Use bash shell by default
SHELL ["/bin/bash", "-c"]
2022-04-22 20:28:36 +00:00
RUN npm install typescript -g
2021-08-08 12:02:26 +00:00
2022-01-21 21:49:30 +00:00
RUN mkdir /usr/src
2022-03-22 11:23:38 +00:00
# Install common
2022-04-22 20:12:57 +00:00
RUN mkdir /usr/src/Common
WORKDIR /usr/src/Common
COPY ./Common/package*.json /usr/src/Common/
2022-03-22 11:23:38 +00:00
RUN npm install
2022-04-22 20:12:57 +00:00
COPY ./Common /usr/src/Common
2022-04-22 20:17:50 +00:00
RUN npm run compile
2022-03-22 11:23:38 +00:00
2022-04-11 13:11:16 +00:00
# Install CommonServer
RUN mkdir /usr/src/CommonServer
WORKDIR /usr/src/CommonServer
COPY ./CommonServer/package*.json /usr/src/CommonServer/
2022-03-15 21:57:13 +00:00
RUN npm install
2022-04-11 13:11:16 +00:00
COPY ./CommonServer /usr/src/CommonServer
2022-04-22 20:17:50 +00:00
RUN npm run compile
2022-01-19 12:23:34 +00:00
2021-06-30 11:56:08 +00:00
#SET ENV Variables
ENV PRODUCTION=true
2021-08-07 21:51:54 +00:00
ENV CHROME_PATH=/usr/bin/chromium
2021-06-30 11:56:08 +00:00
# Install Chrome.
2022-01-18 13:37:19 +00:00
RUN apk add curl chromium
2021-06-30 11:56:08 +00:00
2022-01-18 12:34:39 +00:00
RUN mkdir /usr/src/app
2021-06-30 11:56:08 +00:00
WORKDIR /usr/src/app
# Install app dependencies
2022-04-11 13:11:16 +00:00
COPY ./LighthouseRunner/package*.json /usr/src/app/
2022-03-15 21:57:13 +00:00
RUN npm install
2022-02-27 11:51:35 +00:00
RUN npm install -g ts-node
2021-06-30 11:56:08 +00:00
# Bundle app source
2022-04-11 13:11:16 +00:00
COPY ./LighthouseRunner /usr/src/app
2021-06-30 11:56:08 +00:00
# Expose ports.
2021-07-01 13:28:17 +00:00
# - 3015: Lighthouse Runner
EXPOSE 3015
2021-06-30 11:56:08 +00:00
#Run the app
2022-04-22 20:17:50 +00:00
RUN npm run compile
2021-06-30 11:56:08 +00:00
CMD [ "npm", "start"]