mirror of
https://github.com/OneUptime/oneuptime
synced 2024-11-22 15:24:55 +00:00
71 lines
1.7 KiB
Docker
71 lines
1.7 KiB
Docker
#
|
|
# probe Dockerfile
|
|
#
|
|
|
|
# Pull base image nodejs image.
|
|
FROM node:alpine
|
|
|
|
# Install bash.
|
|
RUN apk update && apk add bash && apk add curl
|
|
|
|
#Use bash shell by default
|
|
SHELL ["/bin/bash", "-c"]
|
|
RUN npm install typescript -g
|
|
|
|
|
|
RUN mkdir /usr/src
|
|
|
|
# Install common
|
|
RUN mkdir /usr/src/Common
|
|
WORKDIR /usr/src/Common
|
|
COPY ./Common/package*.json /usr/src/Common/
|
|
RUN npm install
|
|
COPY ./Common /usr/src/Common
|
|
RUN npm run compile
|
|
|
|
# Install CommonServer
|
|
RUN mkdir /usr/src/CommonServer
|
|
WORKDIR /usr/src/CommonServer
|
|
COPY ./CommonServer/package*.json /usr/src/CommonServer/
|
|
RUN npm install
|
|
COPY ./CommonServer /usr/src/CommonServer
|
|
RUN npm run compile
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
# Install trivy for container scanning
|
|
RUN curl -sfL https://raw.githubusercontent.com/aquasecurity/trivy/master/contrib/install.sh | sh -s -- -b /usr/local/bin
|
|
|
|
# Install kubectl for kubernetes monitor scanning
|
|
RUN OS_ARCHITECTURE="amd64"
|
|
RUN if [[ "$(uname -m)" -eq "aarch64" ]] ; then OS_ARCHITECTURE="arm64" ; fi
|
|
RUN if [[ "$(uname -m)" -eq "arm64" ]] ; then OS_ARCHITECTURE="arm64" ; fi
|
|
RUN curl -LO "https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/$(OS_ARCHITECTURE)/kubectl"
|
|
RUN chmod +x ./kubectl
|
|
RUN mv ./kubectl /usr/local/bin/kubectl && \
|
|
chown root: /usr/local/bin/kubectl
|
|
|
|
|
|
|
|
# Install app dependencies
|
|
RUN cd /usr/src/app
|
|
|
|
# Copy package.json files
|
|
COPY ./Probe/package.json /usr/src/app/package.json
|
|
COPY ./Probe/package-lock.json /usr/src/app/package-lock.json
|
|
|
|
|
|
RUN npm install
|
|
|
|
# Expose ports.
|
|
# - 3008: probe
|
|
EXPOSE 3008
|
|
|
|
# Expose Debugging port.
|
|
EXPOSE 9229
|
|
|
|
#Run the app
|
|
RUN npm run compile
|
|
CMD [ "npm", "run", "dev"]
|
|
|