platform/services/sign/pod-sign/Dockerfile

10 lines
152 B
Docker
Raw Normal View History

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" ]