diff --git a/Dockerfile b/Dockerfile index 95db580..778429f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,6 +23,7 @@ COPY nginx.conf /etc/nginx/conf.d/default.conf COPY --from=builder /app/dist /usr/share/nginx/html HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \ - CMD wget --quiet --tries=1 --spider http://localhost/ || exit 1 + CMD wget -q -O /dev/null http://127.0.0.1/ || exit 1 + EXPOSE 80