Some checks failed
ci/woodpecker/tag/build/5 Pipeline failed
ci/woodpecker/tag/predeploy Pipeline was successful
ci/woodpecker/tag/deploy/2 unknown status
ci/woodpecker/tag/deploy/1 unknown status
ci/woodpecker/tag/build/2 Pipeline failed
ci/woodpecker/tag/deploy/4 unknown status
ci/woodpecker/tag/deploy/3 unknown status
ci/woodpecker/tag/build/3 Pipeline failed
ci/woodpecker/tag/deploy/5 unknown status
ci/woodpecker/tag/ingress unknown status
ci/woodpecker/tag/build/1 Pipeline failed
ci/woodpecker/tag/build/4 Pipeline failed
16 lines
318 B
Docker
16 lines
318 B
Docker
# Static assets Dockerfile (minimal webserver for /static only)
|
|
|
|
FROM nginx:1.27-alpine
|
|
|
|
WORKDIR /usr/share/nginx/html
|
|
|
|
# Remove default nginx content
|
|
RUN rm -rf ./*
|
|
|
|
# Copy only static assets from the UI project
|
|
COPY apps/ui/static/ ./
|
|
|
|
EXPOSE 80
|
|
|
|
# Use default nginx config; caller can mount custom config if needed
|