Skip to content

Instantly share code, notes, and snippets.

View daniel-baf's full-sized avatar
💭
Dying inside :/

Daniel Bautista daniel-baf

💭
Dying inside :/
View GitHub Profile
@daniel-baf
daniel-baf / Dockerfile.dev
Last active July 25, 2025 03:53
Correccion 2025 para el video de curso de docker Hola Mundo
# Dockerfile.dev
FROM node:18
WORKDIR /home/app
COPY package*.json ./
RUN npm install
RUN npm install --save-dev nodemon
COPY . .