Skip to content

Instantly share code, notes, and snippets.

View dev31sanghvi's full-sized avatar

Dev Sanghvi dev31sanghvi

View GitHub Profile
@dev31sanghvi
dev31sanghvi / Dockerfile
Created January 31, 2024 06:26 — forked from piyushgarg-dev/Dockerfile
Docker In One Shot
FROM ubuntu
RUN apt-get update
RUN apt-get install -y curl
RUN curl -sL https://deb.nodesource.com/setup_18.x | bash -
RUN apt-get upgrade -y
RUN apt-get install -y nodejs
COPY package.json package.json
COPY package-lock.json package-lock.json