Updated README and examples

This commit is contained in:
Sambo Chea 2022-08-25 11:53:53 +07:00
parent a3023036f8
commit 302f400c39
Signed by: sombochea
GPG Key ID: 3C7CF22A05D95490
3 changed files with 7 additions and 7 deletions

View File

@ -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 <sombochea@cubetiqs.com>
- Sambo Chea <sombochea@cubetiqs.com>
# License

View File

@ -11,6 +11,6 @@ WORKDIR /app
COPY . /app
RUN yarn
RUN pnpm install
CMD [ "node" , "index.js"]

View File

@ -5,6 +5,6 @@ WORKDIR /usr/src/app
COPY . /usr/src/app
RUN yarn
RUN pnpm install
CMD [ "node" , "index.js"]