Skip to content

Instantly share code, notes, and snippets.

View mr-Dev-Anshu's full-sized avatar
💭
Eat, sleep , code , repeat

Anshu Pandey mr-Dev-Anshu

💭
Eat, sleep , code , repeat
  • Bhopal
View GitHub Profile
@mr-Dev-Anshu
mr-Dev-Anshu / Dockerfile
Created March 22, 2024 21:02 — 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