Skip to content

Commit

Permalink
Merge pull request #4 from vladstrinada/master
Browse files Browse the repository at this point in the history
update docker image to ubuntu 22 lts and node 14
  • Loading branch information
seplu committed Nov 10, 2022
2 parents c92acd0 + 653a8d7 commit f39533b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# bitbar/ubuno

# based on Ubuntu 18.04 LTS
FROM ubuntu:bionic
# based on Ubuntu 22.04 LTS
FROM ubuntu:jammy

LABEL vendor="Bitbar Inc" \
description="Ubuntu LTS based Docker image with Node.js"
Expand All @@ -27,8 +27,8 @@ RUN apt-get install -qy -o APT::Install-Recommend=false -o APT::Install-Suggests
wget \
tzdata

# install Node.js 12.x LTS
RUN curl -sL https://deb.nodesource.com/setup_12.x -o nodesource_setup.sh && \
# install Node.js 14.x
RUN curl -sL https://deb.nodesource.com/setup_14.x -o nodesource_setup.sh && \
bash nodesource_setup.sh && \
apt-get install nodejs -y && \
rm nodesource_setup.sh
Expand Down
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

## Info

* Based on Ubuntu LTS (18.04)
* Node.js LTS (12)
* Based on Ubuntu LTS (22.04)
* Node.js (14)
* [confd](https://github.com/kelseyhightower/confd) onboard
* other tools:

Expand All @@ -17,6 +17,9 @@

## Changelog

* **3.0.0**
* Updated ubuntu to 22.04 lts and node to 14

* **2.0.1**

* Patch: Added missing `CMD`
Expand Down

0 comments on commit f39533b

Please sign in to comment.