oneuptime/Accounts/Dockerfile.tpl

85 lines
1.4 KiB
Docker
Raw Normal View History

2019-08-02 12:56:16 +00:00
#
# Accounts Dockerfile
#
# Pull base image nodejs image.
FROM node:21.7.3-alpine3.18
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-09-21 16:09:09 +00:00
2023-08-25 10:16:31 +00:00
ARG GIT_SHA
ARG APP_VERSION
ENV GIT_SHA=${GIT_SHA}
ENV APP_VERSION=${APP_VERSION}
2019-08-02 12:56:16 +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
2022-01-18 12:34:39 +00:00
# Install bash.
2023-09-13 07:00:24 +00:00
RUN apk add bash && apk add curl
2022-01-18 12:34:39 +00:00
2021-08-08 12:02:26 +00:00
#Use bash shell by default
SHELL ["/bin/bash", "-c"]
2022-12-17 07:21:42 +00:00
2021-08-08 12:02:26 +00:00
2022-03-01 19:36:15 +00:00
RUN mkdir /usr/src
2022-03-22 11:23:38 +00:00
2022-04-22 20:12:57 +00:00
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-03-22 11:23:38 +00:00
2022-12-16 10:39:09 +00:00
2022-08-03 18:57:41 +00:00
2022-12-16 08:05:59 +00:00
2022-12-16 10:39:09 +00:00
2022-08-03 21:01:38 +00:00
2022-08-03 18:57:41 +00:00
2022-03-22 11:23:38 +00:00
2022-12-16 10:39:09 +00:00
2022-03-22 11:23:38 +00:00
2023-09-13 08:23:26 +00:00
2019-08-02 12:56:16 +00:00
ENV PRODUCTION=true
ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true
2019-08-02 12:56:16 +00:00
WORKDIR /usr/src/app
# Install app dependencies
2022-04-22 20:12:57 +00:00
COPY ./Accounts/package*.json /usr/src/app/
2023-10-02 15:17:43 +00:00
RUN npm install
2019-08-02 12:56:16 +00:00
# Expose ports.
# - 3003: accounts
EXPOSE 3003
RUN npm i -D webpack-cli
2022-12-30 09:18:22 +00:00
2022-11-08 17:17:58 +00:00
{{ if eq .Env.ENVIRONMENT "development" }}
2023-07-22 16:57:10 +00:00
RUN mkdir /usr/src/app/dev-env
2023-07-22 16:45:12 +00:00
RUN touch /usr/src/app/dev-env/.env
RUN npm i -D webpack-dev-server
2022-11-08 17:17:58 +00:00
#Run the app
CMD [ "npm", "run", "dev" ]
{{ else }}
# Copy app source
COPY ./Accounts /usr/src/app
# Bundle app source
2022-11-08 17:17:58 +00:00
RUN npm run build
2019-08-02 12:56:16 +00:00
#Run the app
CMD [ "npm", "start" ]
2022-11-08 17:17:58 +00:00
{{ end }}