summaryrefslogtreecommitdiff
path: root/server/Dockerfile
blob: 02ff44c346753dc225a453232558dfacdf6695ea (plain)
1
2
3
4
5
6
7
8
# -- <ci_server> --
FROM oci.liz.coffee/emprespresso/ci_base:release AS server

HEALTHCHECK --interval=10s --retries=3 --start-period=3s \
    CMD [ "curl --fail http://localhost:9000/health" ]

CMD [ "/app/mod.ts --run-server --port=9000" ]
# -- </ci_server> --