mirror of
https://github.com/OneUptime/oneuptime
synced 2024-11-22 07:10:53 +00:00
76 lines
1.7 KiB
Docker
76 lines
1.7 KiB
Docker
#
|
|
# OneUptime Docs Dockerfile
|
|
#
|
|
|
|
# Pull base image nodejs image.
|
|
FROM node:alpine
|
|
|
|
# Install bash.
|
|
RUN apk update && apk add bash && apk add curl
|
|
|
|
|
|
# Install python
|
|
RUN apk update && apk add --no-cache --virtual .gyp python3 make g++
|
|
|
|
#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
|
|
|
|
# Install CommonUI
|
|
RUN mkdir /usr/src/CommonUI
|
|
WORKDIR /usr/src/CommonUI
|
|
COPY ./CommonUI/package*.json /usr/src/CommonUI/
|
|
RUN npm install
|
|
COPY ./CommonUI /usr/src/CommonUI
|
|
RUN npm run compile
|
|
|
|
#SET ENV Variables
|
|
|
|
ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true
|
|
|
|
# Because of this error during build
|
|
# Error message "error:0308010C:digital envelope routines::unsupported"
|
|
ENV NODE_OPTIONS=--openssl-legacy-provider
|
|
|
|
|
|
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
# Copy package.json files
|
|
COPY ./Dashboard/package.json /usr/src/app/package.json
|
|
COPY ./Dashboard/package-lock.json /usr/src/app/package-lock.json
|
|
|
|
|
|
# Install app dependencies
|
|
RUN npm install
|
|
|
|
# Create .cache folder with necessary permissions for React-based apps
|
|
# https://stackoverflow.com/questions/67087735/eacces-permission-denied-mkdir-usr-app-node-modules-cache-how-can-i-creat
|
|
RUN mkdir -p node_modules/.cache && chmod -R 777 node_modules/.cache
|
|
|
|
# Expose ports.
|
|
# - 1445: OneUptime Docs
|
|
EXPOSE 1445
|
|
|
|
#Run the app
|
|
CMD [ "npm", "run", "dev" ]
|