platform/pods/green/Dockerfile
Andrey Sobolev 244ddd42af
Some checks are pending
CI / build (push) Waiting to run
CI / svelte-check (push) Blocked by required conditions
CI / formatting (push) Blocked by required conditions
CI / test (push) Blocked by required conditions
CI / uitest (push) Waiting to run
CI / uitest-pg (push) Waiting to run
CI / uitest-qms (push) Waiting to run
CI / docker-build (push) Blocked by required conditions
CI / dist-build (push) Blocked by required conditions
Green Transactor (#7828)
Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
2025-01-31 11:42:06 +07:00

10 lines
166 B
Docker

FROM hardcoreeng/base:v20250113a
WORKDIR /usr/src/app
COPY bundle/bundle.js ./
COPY bundle/bundle.js.map ./
EXPOSE 6767
CMD [ "node", "--expose-gc", "bundle.js" ]