mirror of
https://github.com/OneUptime/oneuptime.git
synced 2026-01-16 23:00:51 +00:00
87 lines
2 KiB
Smarty
Executable file
87 lines
2 KiB
Smarty
Executable file
#
|
|
# OneUptime-ProbeAPI 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 npm install ts-node -g
|
|
RUN npm install nodemon -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
|
|
RUN mkdir /usr/src/Common/temp
|
|
COPY ./Common /usr/src/Common/temp
|
|
# Remove node modules copies from local computer.
|
|
RUN rm -rf /usr/src/Common/temp/node_modules
|
|
RUN cp -a /usr/src/Common/temp/. /usr/src/Common/
|
|
RUN cd /usr/src/Common/
|
|
RUN rm -rf /usr/src/Common/temp/
|
|
RUN npm run compile
|
|
|
|
# Install Model
|
|
RUN mkdir /usr/src/Model
|
|
WORKDIR /usr/src/Model
|
|
COPY ./Model/package*.json /usr/src/Model/
|
|
RUN npm install
|
|
RUN mkdir /usr/src/Model/temp
|
|
COPY ./Model /usr/src/Model/temp
|
|
# Remove node modules copies from local computer.
|
|
RUN rm -rf /usr/src/Model/temp/node_modules
|
|
RUN cp -a /usr/src/Model/temp/. /usr/src/Model/
|
|
RUN cd /usr/src/Model/
|
|
RUN rm -rf /usr/src/Model/temp/
|
|
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
|
|
RUN mkdir /usr/src/CommonServer/temp
|
|
COPY ./CommonServer /usr/src/CommonServer/temp
|
|
# Remove node modules copies from local computer.
|
|
RUN rm -rf /usr/src/CommonServer/temp/node_modules
|
|
RUN cp -a /usr/src/CommonServer/temp/. /usr/src/CommonServer/
|
|
RUN cd /usr/src/CommonServer/
|
|
RUN rm -rf /usr/src/CommonServer/temp/
|
|
RUN npm run compile
|
|
|
|
|
|
#SET ENV Variables
|
|
ENV PRODUCTION=true
|
|
|
|
RUN mkdir /usr/src/app
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
# Install app dependencies
|
|
COPY ./ProbeAPI/package*.json /usr/src/app/
|
|
RUN npm install
|
|
|
|
# Expose ports.
|
|
EXPOSE 3400
|
|
|
|
{{ if eq .Env.ENVIRONMENT "development" }}
|
|
#Run the app
|
|
CMD [ "npm", "run", "dev" ]
|
|
{{ else }}
|
|
# Copy app source
|
|
COPY ./ProbeAPI /usr/src/app
|
|
# Bundle app source
|
|
RUN npm run compile
|
|
#Run the app
|
|
CMD [ "npm", "start" ]
|
|
{{ end }}
|