oneuptime/Probe/Dockerfile.tpl

87 lines
1.8 KiB
Docker
Raw Normal View History

#
2023-05-15 09:54:32 +00:00
# OneUptime-Probe Dockerfile
#
# Pull base image nodejs image.
FROM node:22.5
2022-12-30 09:18:22 +00:00
RUN mkdir /tmp/npm && chmod 2777 /tmp/npm && chown 1000:1000 /tmp/npm && npm config set cache /tmp/npm --global
2023-08-25 10:16:31 +00:00
ARG GIT_SHA
ARG APP_VERSION
ENV GIT_SHA=${GIT_SHA}
ENV APP_VERSION=${APP_VERSION}
ENV NODE_OPTIONS="--use-openssl-ca"
## Add Intermediate Certs
COPY ./SslCertificates /usr/local/share/ca-certificates
RUN update-ca-certificates
2023-08-25 10:16:31 +00:00
# IF APP_VERSION is not set, set it to 1.0.0
RUN if [ -z "$APP_VERSION" ]; then export APP_VERSION=1.0.0; fi
RUN apt-get update
# Install bash.
RUN apt-get install bash -y && apt-get install curl -y && apt-get install iputils-ping -y
# Install python
RUN apt-get update && apt-get install -y .gyp python3 make g++
2023-05-02 14:29:22 +00:00
# Install playwright dependencies
RUN apt-get install -y libnss3 libnspr4 libatk1.0-0 libatk-bridge2.0-0 libcups2 libdrm2 libxkbcommon0 libxcomposite1 libxdamage1 libxfixes3 libxrandr2 libgbm1 libgtk-3-0 libpango-1.0-0 libcairo2 libgdk-pixbuf2.0-0 libasound2 libatspi2.0-0
2023-05-25 22:44:20 +00:00
#Use bash shell by default
SHELL ["/bin/bash", "-c"]
2022-12-17 07:21:42 +00:00
2023-05-25 22:44:20 +00:00
# Install iputils
RUN apt-get install net-tools -y
RUN mkdir -p /usr/src
WORKDIR /usr/src/Common
COPY ./Common/package*.json /usr/src/Common/
# Set version in ./Common/package.json to the APP_VERSION
RUN sed -i "s/\"version\": \".*\"/\"version\": \"$APP_VERSION\"/g" /usr/src/Common/package.json
2023-10-02 15:17:43 +00:00
RUN npm install
2022-12-16 10:39:09 +00:00
COPY ./Common /usr/src/Common
2022-12-16 10:39:09 +00:00
2022-12-16 08:05:59 +00:00
2022-12-16 10:39:09 +00:00
2023-09-13 08:23:26 +00:00
ENV PRODUCTION=true
2023-05-02 14:29:22 +00:00
WORKDIR /usr/src/app
RUN npx playwright install --with-deps
# Install app dependencies
2023-05-15 09:54:32 +00:00
COPY ./Probe/package*.json /usr/src/app/
2023-10-02 15:17:43 +00:00
RUN npm install
# Expose ports.
2023-05-02 14:29:22 +00:00
# - 3087: OneUptime-backend
EXPOSE 3087
2022-11-08 17:17:58 +00:00
{{ if eq .Env.ENVIRONMENT "development" }}
#Run the app
2022-11-08 17:17:58 +00:00
CMD [ "npm", "run", "dev" ]
{{ else }}
# Copy app source
2023-05-15 09:54:32 +00:00
COPY ./Probe /usr/src/app
2022-11-08 17:17:58 +00:00
# Bundle app source
RUN npm run compile
2022-11-08 17:17:58 +00:00
#Run the app
CMD [ "npm", "start" ]
{{ end }}