mirror of
https://github.com/sartography/spiff-arena.git
synced 2025-01-12 02:24:15 +00:00
9147a8db8c
* some base updates for vite w/ burnettk * i can log in w/ burnettk * a couple more fixes w/ burnettk * make sure selectedTabIndex has been set before using it w/ burnettk * fixed active-users db issue, added type module to package json to fix prerender issues, and various other issues w/ burnettk * fixed issues with building and running from compiled w/ burnettk * pyl * eslint fix is running and removed both inferno and navigationBar warnings * vim likes the Dockerfile suffix by default * use process.env.HOME * probably do not need alias * a little clean up and fixed font warnings w/ burnettk * updated elements to remove warnings in the console w/ burnettk * fixed es lint issues w/ burnettk * update docker build in frontend w/ burnettk * set the specific tag of nginx w/ burnettk * build docker imgaes for this branch to test w/ burnettk * added vitest and updated Dockerfile to be nginx w/ burnettk * tests are passing w/ burnettk * add prefresh and more keys * added cypress-vite to attempt to get cypress working again * some coderabbit suggestions * hopefully there is no reason to use PUBLIC_URL at all when using vite * use the correct location of the index file in the docker image * spaces are fine in index.html file variable declaration --------- Co-authored-by: jasquat <jasquat@users.noreply.github.com> Co-authored-by: burnettk <burnettk@users.noreply.github.com>
61 lines
1.5 KiB
Docker
61 lines
1.5 KiB
Docker
# Base image to share ENV vars that activate VENV.
|
|
FROM node:20.8.1-bookworm-slim AS base
|
|
|
|
RUN mkdir /app
|
|
|
|
WORKDIR /app
|
|
|
|
# curl for debugging
|
|
# procps for debugging
|
|
# vim ftw
|
|
RUN apt-get update \
|
|
&& apt-get clean -y \
|
|
&& apt-get install -y -q \
|
|
curl \
|
|
procps \
|
|
vim-tiny \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# this matches total memory on spiffworkflow-demo
|
|
ENV NODE_OPTIONS=--max_old_space_size=2048
|
|
|
|
|
|
######################## - SETUP
|
|
|
|
# Setup image for installing JS dependencies.
|
|
FROM base AS setup
|
|
|
|
COPY . /app/
|
|
|
|
RUN cp /app/package.json /app/package.json.bak
|
|
ADD justservewebserver.package.json /app/package.json
|
|
RUN npm ci --ignore-scripts
|
|
RUN cp -r /app/node_modules /app/node_modules.justserve
|
|
RUN cp /app/package.json.bak /app/package.json
|
|
|
|
# npm ci because it respects the lock file.
|
|
# --ignore-scripts because authors can do bad things in postinstall scripts.
|
|
# https://cheatsheetseries.owasp.org/cheatsheets/NPM_Security_Cheat_Sheet.html
|
|
# npx can-i-ignore-scripts can check that it's safe to ignore scripts.
|
|
RUN npm ci --ignore-scripts
|
|
|
|
RUN ./bin/build
|
|
|
|
|
|
######################## - FINAL
|
|
|
|
# Use nginx as the base image
|
|
FROM nginx:1.25.4-bookworm
|
|
|
|
# Remove default nginx configuration
|
|
RUN rm -rf /etc/nginx/conf.d/*
|
|
|
|
# Copy the nginx configuration file
|
|
COPY docker_build/nginx.conf.template /var/tmp
|
|
|
|
# Copy the built static files into the nginx directory
|
|
COPY --from=setup /app/dist /usr/share/nginx/html
|
|
COPY --from=setup /app/bin /app/bin
|
|
|
|
CMD ["/app/bin/boot_server_in_docker"]
|