Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

chore: bump node from 20 to 21 #43

Merged
merged 2 commits into from
Jan 9, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,14 @@ RUN apt-get update && \
apt-get install --yes \
git curl wget build-essential python3-dev python3-pip

# Set up NodeJS 20 repository
RUN curl -sL https://deb.nodesource.com/setup_20.x | bash -
# Set up Node.js 21 repository
RUN curl -fsSL https://deb.nodesource.com/setup_21.x | bash -

# Install Node.js and dependencies
RUN apt-get install --yes nodejs haproxy libwayland-client0

# Install a compatible npm version
RUN npm install --location=global npm@10

# Install common dependencies used in projects
RUN apt-get install --yes \
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ This project is a docker image for developing Node.js and Python web projects. I

- Based on ubuntu:focal
- Python 3.10
- Node 20 LTS
- Node 21 LTS
- Yarn
- dotrun-docker

Expand Down
2 changes: 1 addition & 1 deletion src/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

setup(
name="dotrun-docker",
version="1.1.0",
version="1.2.0",
packages=["dotrun_docker"],
install_requires=[
"ipdb",
Expand Down
Loading