We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7039b64 commit 716f823Copy full SHA for 716f823
gateway-contracts/Dockerfile
@@ -1,4 +1,4 @@
1
-FROM ghcr.io/zama-ai/fhevm-node:latest
+FROM ghcr.io/zama-ai/fhevm/gci/nodejs:22.14.0-alpine3.21
2
3
WORKDIR /app
4
@@ -29,4 +29,8 @@ RUN npx hardhat clean && \
29
30
USER fhevm:fhevm
31
32
+# Check that some pre-compiled contracts are present
33
+HEALTHCHECK --interval=30s --timeout=5s --start-period=5s --retries=3 \
34
+ CMD test -d /app/artifacts && find /app/artifacts -type f -name "*.json" | grep -q . || exit 1
35
+
36
ENTRYPOINT ["/bin/bash", "-c"]
0 commit comments