threejs-test/Dockerfile
Juan Sebastian Montoya 98ec60641d
All checks were successful
Build and Publish Docker Image / Publish to Registry (push) Successful in 8s
Build and Publish Docker Image / Deploy to Portainer (push) Successful in 2s
Hotfix/Cache bust all js files (#21)
Reviewed-on: #21
Co-authored-by: Juan Sebastian Montoya <juansmm@outlook.com>
Co-committed-by: Juan Sebastian Montoya <juansmm@outlook.com>
2025-11-26 19:40:41 -05:00

23 lines
708 B
Docker

FROM nginx:alpine
# Accept build argument for version
ARG VERSION=dev
ARG BUILD_DATE=unknown
# Create version.json file with build information
RUN printf '{"version":"%s","buildDate":"%s"}\n' "${VERSION}" "${BUILD_DATE}" > /usr/share/nginx/html/version.json
# Copy HTML and source files
COPY index.html /usr/share/nginx/html/
COPY src/ /usr/share/nginx/html/src/
# Copy and run cache busting script (bash/sed - no external dependencies needed)
COPY build-cache-bust.sh /tmp/build-cache-bust.sh
RUN chmod +x /tmp/build-cache-bust.sh && \
/tmp/build-cache-bust.sh "${VERSION}" /usr/share/nginx/html
# Copy nginx configuration
COPY nginx.conf /etc/nginx/conf.d/default.conf
# Expose port 80
EXPOSE 80