calpine-node/examples/sayhello/Dockerfile

10 lines
155 B
Docker
Raw Normal View History

2021-03-29 15:01:53 +07:00
FROM cubetiq/calpine-node:latest
LABEL maintainer="sombochea@cubetiqs.com"
WORKDIR /usr/src/app
COPY . /usr/src/app
RUN yarn
CMD [ "node" , "index.js"]