calpine-node/examples/sayhello/Dockerfile

10 lines
163 B
Docker

FROM cubetiq/calpine-node:latest
LABEL maintainer="sombochea@cubetiqs.com"
WORKDIR /usr/src/app
COPY . /usr/src/app
RUN pnpm install
CMD [ "node" , "index.js"]