WenDavid commited on
Commit
4e5695a
·
verified ·
1 Parent(s): 234a866

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +9 -0
Dockerfile ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ FROM ghcr.io/veloera/veloera:latest
2
+
3
+ EXPOSE 3000
4
+
5
+ CMD ["--log-dir", "/app/logs"]
6
+
7
+ HEALTHCHECK --interval=30s --timeout=10s --retries=3 \
8
+ CMD-SHELL wget -q -O - http://localhost:3000/api/status \
9
+ | grep -o '"success":\s*true' || exit 1