Fix docker-compose for Coolify: remove manual Traefik labels, add healthchecks, add curl to containers

This commit is contained in:
claude 2026-03-15 00:23:35 +00:00
parent 4db2b0846b
commit 00c58c6f62
3 changed files with 15 additions and 21 deletions

View file

@ -6,6 +6,7 @@ COPY . .
RUN npm run build
FROM nginx:alpine
RUN apk add --no-cache curl
COPY --from=build /app/dist /usr/share/nginx/html
COPY nginx.conf /etc/nginx/conf.d/default.conf
EXPOSE 80