platform/services/sign/pod-sign/Dockerfile
Andrey Sobolev ddecae80dd
Move services to public (#6156)
Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
2024-07-28 14:55:43 +07:00

10 lines
152 B
Docker

FROM node:20
RUN apt-get update && apt-get install dumb-init
WORKDIR /usr/src/app
COPY bundle/bundle.js ./
CMD [ "dumb-init", "node", "bundle.js" ]