* modified * new files in existing extensions/libraries/modes * fixed bugs and tests * Clean up * fix: viewport display fixed * Fixed configs for deployment * Removed unnecessary files and functions * Fixed default HP module * Added white labelling * Fixed hash routing * Removed unnecessary routers Co-authored-by: Alireza Sedghi <ar.sedghi@gmail.com>
85 lines
2.4 KiB
Plaintext
85 lines
2.4 KiB
Plaintext
# docker-compose
|
|
# --------------
|
|
# This dockerfile is used by the `docker-compose.yml` adjacent file. When
|
|
# running `docker-compose build`, this dockerfile helps build the "webapp" image.
|
|
# All paths are relative to the `context`, which is the project root directory.
|
|
#
|
|
# docker build
|
|
# --------------
|
|
# If you would like to use this dockerfile to build and tag an image, make sure
|
|
# you set the context to the project's root directory:
|
|
# https://docs.docker.com/engine/reference/commandline/build/
|
|
#
|
|
#
|
|
# SUMMARY
|
|
# --------------
|
|
# This dockerfile has two stages:
|
|
#
|
|
# 1. Building the React application for production
|
|
# 2. Setting up our Nginx (OpenResty*) image w/ step one's output
|
|
#
|
|
# * OpenResty is functionally identical to Nginx with the addition of Lua out of
|
|
# the box.
|
|
|
|
|
|
# Stage 1: Build the application
|
|
FROM node:12.22.1-slim as builder
|
|
|
|
RUN mkdir /usr/src/app
|
|
WORKDIR /usr/src/app
|
|
|
|
# Copy Files
|
|
COPY .docker /usr/src/app/.docker
|
|
COPY .webpack /usr/src/app/.webpack
|
|
COPY extensions /usr/src/app/extensions
|
|
COPY modes /usr/src/app/modes
|
|
COPY platform /usr/src/app/platform
|
|
COPY .browserslistrc /usr/src/app/.browserslistrc
|
|
COPY aliases.config.js /usr/src/app/aliases.config.js
|
|
COPY babel.config.js /usr/src/app/babel.config.js
|
|
COPY lerna.json /usr/src/app/lerna.json
|
|
COPY package.json /usr/src/app/package.json
|
|
COPY postcss.config.js /usr/src/app/postcss.config.js
|
|
COPY yarn.lock /usr/src/app/yarn.lock
|
|
|
|
# ADD . /usr/src/app/
|
|
RUN yarn config set workspaces-experimental true
|
|
RUN yarn install
|
|
|
|
ENV APP_CONFIG=config/docker_openresty-orthanc.js
|
|
ENV PATH /usr/src/app/node_modules/.bin:$PATH
|
|
|
|
ENV QUICK_BUILD true
|
|
RUN yarn run build
|
|
|
|
# ADD . /usr/src/app/
|
|
# RUN yarn install
|
|
# RUN yarn run build:web
|
|
|
|
|
|
# Stage 2: Bundle the built application into a Docker container
|
|
# which runs openresty (nginx) using Alpine Linux
|
|
# LINK: https://hub.docker.com/r/openresty/openresty
|
|
FROM openresty/openresty:1.15.8.1rc1-0-alpine-fat
|
|
|
|
RUN mkdir /var/log/nginx
|
|
RUN apk add --no-cache openssl
|
|
RUN apk add --no-cache openssl-dev
|
|
RUN apk add --no-cache git
|
|
RUN apk add --no-cache gcc
|
|
# !!!
|
|
RUN luarocks install lua-resty-openidc
|
|
|
|
#
|
|
RUN luarocks install lua-resty-jwt
|
|
RUN luarocks install lua-resty-session
|
|
RUN luarocks install lua-resty-http
|
|
# !!!
|
|
RUN luarocks install lua-resty-openidc
|
|
RUN luarocks install luacrypto
|
|
|
|
# Copy build output to image
|
|
COPY --from=builder /usr/src/app/platform/viewer/dist /var/www/html
|
|
|
|
ENTRYPOINT ["/usr/local/openresty/nginx/sbin/nginx", "-g", "daemon off;"]
|