summaryrefslogtreecommitdiff
path: root/server/Dockerfile
blob: 4311f9c0593a94f8d6dd7803b2834c2bf38465cb (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 true --port 9000" ]
# -- </ci_server> --