Skip to content

Instantly share code, notes, and snippets.

View Savecoders's full-sized avatar
yes! Coffe + Code

Pablo Pincay Alvarez Savecoders

yes! Coffe + Code
View GitHub Profile
@Klerith
Klerith / instalaciones-nestjs.md
Last active July 12, 2024 20:11
Instalaciones recomendadas para el curso de Nest.js
@Klerith
Klerith / Dockerfile
Last active July 2, 2024 19:06
Preparar imagen de Docker - Node App
# Install dependencies only when needed
FROM node:18-alpine3.15 AS deps
# Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed.
RUN apk add --no-cache libc6-compat
WORKDIR /app
COPY package.json yarn.lock ./
RUN yarn install --frozen-lockfile
# Build the app with cache dependencies
FROM node:18-alpine3.15 AS builder