All checks were successful
Deploy with Docker Compose / deploy (push) Successful in 4m58s
Move Vue app from nginx/vue/ to top-level vue/ with its own Dockerfile, update docker-compose configs and nginx proxy to serve from the new container, and add initial Rust WASM crate (stp_wasm). Also fix .gitignore to exclude Rust target/ directories. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
10 lines
395 B
Docker
10 lines
395 B
Docker
FROM nginx:latest
|
|
RUN rm -rf /etc/nginx/html/* && \
|
|
apt-get update && apt-get install -y gettext-base && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
COPY nginx.conf.template /etc/nginx/nginx.conf.template
|
|
COPY nginx_setup.conf.template /etc/nginx/nginx_setup.conf.template
|
|
COPY nginx_dev.conf.template /etc/nginx/nginx_dev.conf.template
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
ENTRYPOINT ["/entrypoint.sh"]
|