We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d01a1bc commit 4bc1907Copy full SHA for 4bc1907
container/Dockerfile
@@ -1,8 +1,4 @@
1
-FROM node:24-slim AS builder
2
-
3
-RUN apt-get update \
4
- && apt-get install -y --no-install-recommends git ca-certificates \
5
- && rm -rf /var/lib/apt/lists/*
+FROM node:lts AS builder
6
7
WORKDIR /workspace
8
@@ -27,3 +23,5 @@ COPY container/nginx.conf /etc/nginx/
27
23
COPY --from=builder /workspace/website /usr/share/nginx/website/
28
24
29
25
EXPOSE 8080
26
+
+HEALTHCHECK --timeout=10s --start-period=60s CMD wget -qO /dev/null http://0.0.0.0:8080
0 commit comments