Last active
November 1, 2020 23:19
-
-
Save goyuninfo/19e1b64028c7a9ac6aa9cc590523314b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Use Oracle Linux base image https://hub.docker.com/_/oraclelinux/ | |
FROM oraclelinux:8.2 | |
# Enable Extra Packages for Enterprise Linux (EPEL) | |
RUN rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm | |
# Install Node.js and npm | |
RUN dnf install -y nodejs npm |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment