Improve documentation.

This commit is contained in:
Paulo Gustavo Veiga
2024-04-06 02:47:01 -07:00
parent 12b46b4400
commit b510e4929e
7 changed files with 58 additions and 182 deletions

View File

@@ -3,21 +3,17 @@ FROM node:18.12.1-buster-slim AS builder
# Set the working directory in the container
WORKDIR /app
ARG VERSION="5.1.2"
ARG VERSION="6.0.1"
## Install dependencies
# Install dependencies
RUN mkdir webapp && npm pack @wisemapping/webapp@${VERSION} && tar -xvzf wisemapping-webapp-${VERSION}.tgz -C webapp
RUN mkdir mindplot && npm pack @wisemapping/mindplot@${VERSION} && tar -xvzf wisemapping-mindplot-${VERSION}.tgz -C mindplot
ADD index.html .
# Use Nginx as the production server
FROM nginx:latest
LABEL maintainer="Paulo Gustavo Veiga <pveiga@wisemapping.com>"
## Copy the built React app to Nginx's web server directory
COPY --from=builder /app/index.html /usr/share/nginx/html/
COPY --from=builder /app/webapp/package/dist/* /usr/share/nginx/html/webapp/
COPY --from=builder /app/mindplot/package/dist/* /usr/share/nginx/html/mindplot/
COPY --from=builder /app/webapp/package/dist/* /usr/share/nginx/html/
ADD nginx.conf .
COPY nginx.conf /etc/nginx/conf.d/default.conf