Skip to content

Instantly share code, notes, and snippets.

@vicradon
Last active June 2, 2021 08:19
Show Gist options
  • Save vicradon/3bcd7cd25c26a4ba27310486d08f2a43 to your computer and use it in GitHub Desktop.
Save vicradon/3bcd7cd25c26a4ba27310486d08f2a43 to your computer and use it in GitHub Desktop.
The image definition for the ubuntu-node dockerfile
FROM ubuntu:latest
RUN apt-get update -y &&\
apt install curl -y &&\
curl -fsSL https://deb.nodesource.com/setup_14.x | bash - &&\
apt-get install -y nodejs &&\
apt-get install git -y &&\
apt-get install nano -y
CMD ["bash"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment