diff --git a/README.md b/README.md index c7db10c..62dc42c 100644 --- a/README.md +++ b/README.md @@ -3,9 +3,9 @@ ![Docker Image Size (latest by date)](https://img.shields.io/docker/image-size/cubetiq/calpine-node) ![Docker Pulls](https://img.shields.io/docker/pulls/cubetiq/calpine-node) -- CUBETIQ Alpine OS Linux -- Nodejs 16 (16.15.0) -- Yarn 1.22.18 +- CUBETIQ Alpine OS Linux +- Nodejs 16 (16.17.0) +- PNPM 7 (7.9.5) # [Docker Hub](https://hub.docker.com/r/cubetiq/calpine-node) @@ -29,14 +29,14 @@ WORKDIR /usr/src/app COPY . /usr/src/app -RUN yarn +RUN pnpm install CMD [ "node" , "index.js"] ``` # Contributors -- Sambo Chea +- Sambo Chea # License diff --git a/examples/excel2json/Dockerfile b/examples/excel2json/Dockerfile index 393342e..dc02f6f 100644 --- a/examples/excel2json/Dockerfile +++ b/examples/excel2json/Dockerfile @@ -11,6 +11,6 @@ WORKDIR /app COPY . /app -RUN yarn +RUN pnpm install CMD [ "node" , "index.js"] \ No newline at end of file diff --git a/examples/sayhello/Dockerfile b/examples/sayhello/Dockerfile index 4018434..c952219 100644 --- a/examples/sayhello/Dockerfile +++ b/examples/sayhello/Dockerfile @@ -5,6 +5,6 @@ WORKDIR /usr/src/app COPY . /usr/src/app -RUN yarn +RUN pnpm install CMD [ "node" , "index.js"] \ No newline at end of file