mirror of
https://github.com/OneUptime/oneuptime
synced 2024-11-21 22:59:07 +00:00
c6020a8eb6
The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-ALPINE318-OPENSSL-6593964 - https://snyk.io/vuln/SNYK-ALPINE318-OPENSSL-6593964
101 lines
2.2 KiB
Smarty
101 lines
2.2 KiB
Smarty
#
|
|
# Accounts Dockerfile
|
|
#
|
|
|
|
# Pull base image nodejs image.
|
|
FROM node:21.7.3-alpine3.18
|
|
RUN mkdir /tmp/npm && chmod 2777 /tmp/npm && chown 1000:1000 /tmp/npm && npm config set cache /tmp/npm --global
|
|
|
|
|
|
ARG GIT_SHA
|
|
ARG APP_VERSION
|
|
|
|
ENV GIT_SHA=${GIT_SHA}
|
|
ENV APP_VERSION=${APP_VERSION}
|
|
|
|
|
|
# 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
|
|
|
|
|
|
# Install bash.
|
|
RUN apk add bash && apk add curl
|
|
|
|
#Use bash shell by default
|
|
SHELL ["/bin/bash", "-c"]
|
|
|
|
|
|
RUN mkdir /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
|
|
RUN npm install
|
|
COPY ./Common /usr/src/Common
|
|
|
|
|
|
|
|
WORKDIR /usr/src/Model
|
|
COPY ./Model/package*.json /usr/src/Model/
|
|
# Set version in ./Model/package.json to the APP_VERSION
|
|
RUN sed -i "s/\"version\": \".*\"/\"version\": \"$APP_VERSION\"/g" /usr/src/Model/package.json
|
|
RUN npm install
|
|
COPY ./Model /usr/src/Model
|
|
|
|
|
|
|
|
WORKDIR /usr/src/CommonServer
|
|
COPY ./CommonServer/package*.json /usr/src/CommonServer/
|
|
# Set version in ./CommonServer/package.json to the APP_VERSION
|
|
RUN sed -i "s/\"version\": \".*\"/\"version\": \"$APP_VERSION\"/g" /usr/src/CommonServer/package.json
|
|
RUN npm install
|
|
COPY ./CommonServer /usr/src/CommonServer
|
|
|
|
|
|
|
|
|
|
# Install CommonUI
|
|
|
|
WORKDIR /usr/src/CommonUI
|
|
COPY ./CommonUI/package*.json /usr/src/CommonUI/
|
|
# Set version in ./CommonUI/package.json to the APP_VERSION
|
|
RUN sed -i "s/\"version\": \".*\"/\"version\": \"$APP_VERSION\"/g" /usr/src/CommonUI/package.json
|
|
RUN npm install --force
|
|
COPY ./CommonUI /usr/src/CommonUI
|
|
|
|
|
|
|
|
|
|
ENV PRODUCTION=true
|
|
ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
# Install app dependencies
|
|
COPY ./Accounts/package*.json /usr/src/app/
|
|
RUN npm install
|
|
|
|
# Expose ports.
|
|
# - 3003: accounts
|
|
EXPOSE 3003
|
|
|
|
RUN npm i -D webpack-cli
|
|
|
|
{{ if eq .Env.ENVIRONMENT "development" }}
|
|
RUN mkdir /usr/src/app/dev-env
|
|
RUN touch /usr/src/app/dev-env/.env
|
|
RUN npm i -D webpack-dev-server
|
|
|
|
#Run the app
|
|
CMD [ "npm", "run", "dev" ]
|
|
{{ else }}
|
|
# Copy app source
|
|
COPY ./Accounts /usr/src/app
|
|
# Bundle app source
|
|
|
|
RUN npm run build
|
|
#Run the app
|
|
CMD [ "npm", "start" ]
|
|
{{ end }}
|