platform/services/datalake/pod-datalake/Dockerfile
Alexander Onnikov 92273f548b
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 / uitest-workspaces (push) Waiting to run
CI / docker-build (push) Blocked by required conditions
CI / dist-build (push) Blocked by required conditions
feat: add datalake service (#8184)
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com>
2025-03-10 22:30:32 +07:00

10 lines
229 B
Docker

FROM hardcoreeng/base:v20250113a
WORKDIR /usr/src/app
RUN npm install --ignore-scripts=false --verbose sharp@v0.32.6 --unsafe-perm
COPY bundle/bundle.js ./
COPY bundle/bundle.js.map ./
CMD [ "dumb-init", "node", "bundle.js" ]