13 lines
361 B
Text
13 lines
361 B
Text
|
|
FROM nginx:1.27-alpine
|
||
|
|
|
||
|
|
COPY nginx.conf /etc/nginx/conf.d/default.conf
|
||
|
|
|
||
|
|
WORKDIR /usr/share/nginx/html
|
||
|
|
COPY index.html standalone.html styles.css data.js projects-data.js components.jsx tweaks-panel.jsx llms.txt ./
|
||
|
|
COPY images ./images
|
||
|
|
|
||
|
|
EXPOSE 43036
|
||
|
|
|
||
|
|
HEALTHCHECK --interval=30s --timeout=5s --retries=3 \
|
||
|
|
CMD wget -q --spider http://localhost:43036/ || exit 1
|