mirror of
https://bitbucket.org/wisemapping/wisemapping-open-source.git
synced 2024-11-22 14:17:57 +01:00
26 lines
920 B
Docker
26 lines
920 B
Docker
|
FROM node:18.12.1-buster-slim AS builder
|
||
|
|
||
|
# Set the working directory in the container
|
||
|
WORKDIR /app
|
||
|
|
||
|
ARG VERSION="5.1.2"
|
||
|
|
||
|
## 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:stable-alpine
|
||
|
LABEL maintainer="Paulo Gustavo Veiga <pveiga@wisemapping.com>"
|
||
|
|
||
|
## Copy the built React app to Nginx's web server directory
|
||
|
COPY --from=builder /app /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/
|
||
|
|
||
|
# Expose port 80 for the Nginx server
|
||
|
EXPOSE 80
|
||
|
|
||
|
# Start Nginx when the container runs
|
||
|
CMD ["nginx", "-g", "daemon off;"]
|