Skip to content

Commit

Permalink
chore: upgrade Node.js to v18
Browse files Browse the repository at this point in the history
  • Loading branch information
beevelop committed Oct 16, 2023
1 parent f43ef18 commit a701003
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM beevelop/android
RUN apt-get update && apt-get install -y curl gnupg2 lsb-release && \
curl -fsSL https://deb.nodesource.com/gpgkey/nodesource.gpg.key | apt-key add - && \
apt-key fingerprint 1655A0AB68576280 && \
export VERSION=node_16.x && \
export VERSION=node_18.x && \
export DISTRO="$(lsb_release -s -c)" && \
echo "deb https://deb.nodesource.com/$VERSION $DISTRO main" | tee /etc/apt/sources.list.d/nodesource.list && \
echo "deb-src https://deb.nodesource.com/$VERSION $DISTRO main" | tee -a /etc/apt/sources.list.d/nodesource.list && \
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,25 +8,25 @@
![CalVer](https://img.shields.io/badge/CalVer-YYYY.MM.MICRO-22bfda.svg?style=for-the-badge)
[![Beevelop](https://img.shields.io/badge/-%20Made%20with%20%F0%9F%8D%AF%20by%20%F0%9F%90%9Dvelop-blue.svg?style=for-the-badge)](https://beevelop.com)

# Android 13 with Node.js `v16` and npm / yarn
# Android 13 with Node.js `v18` and npm / yarn

### based on [beevelop/android](https://github.com/beevelop/docker-android)

- Java `11.0.17`
- Gradle `4.4.1` (Groovy: `2.4.17`)
- Apache Maven `3.6.3`
- Ant `1.10.7`
- Node.js `v16.19.0`
- npm `8.19.3`
- Node.js `v18.17.0`
- npm `9.6.7`

### Pull, build or run this image

```bash
# pull the most recent tag / release
docker pull beevelop/android-nodejs:v2023.01.1
docker pull beevelop/android-nodejs:v2023.10.1

# or run the image interactively
docker run --rm --name beevelop -it beevelop/android-nodejs:v2023.01.1 bash
docker run --rm --name beevelop -it beevelop/android-nodejs:v2023.10.1 bash

# or build the image from GitHub
docker build -t beevelop/android-nodejs github.com/beevelop/docker-base
Expand All @@ -35,7 +35,7 @@ docker build -t beevelop/android-nodejs github.com/beevelop/docker-base
### Or use it as a base image

```Dockerfile
FROM beevelop/android-nodejs:v2023.01.1
FROM beevelop/android-nodejs:v2023.10.1
```

---
Expand Down

0 comments on commit a701003

Please sign in to comment.