remove debug output
ci/woodpecker/pr/docs Pipeline was successful Details
ci/woodpecker/pr/ci Pipeline was successful Details

This commit is contained in:
OCram85 2024-05-06 16:15:29 +02:00
parent 3db311b92f
commit c9614c19ff
1 changed files with 1 additions and 7 deletions

View File

@ -1,20 +1,14 @@
FROM oven/bun:1 as builder
#USER bun
#COPY --chown=bun:bun package*.json bun.lockb /app/
COPY . /app
WORKDIR /app
ENV NODE_ENV=production
RUN bun install --frozen-lockfile
RUN bun run --vite docs:build && \
pwd && \
ls -la && \
ls -la /app/docs/.vitepress/dist/
RUN bun run --vite docs:build
FROM caddy:2.7.6-alpine as prod
COPY --from=builder /app/docs/.vitepress/dist/ /arkanum-docs/
RUN ls -la /arkanum-docs/
COPY Caddyfile /etc/caddy
HEALTHCHECK --interval=15s --timeout=3s \
CMD wget --no-verbose --tries=1 --spider http://localhost:8080/ || exit 1