Added ci/cd
Some checks failed
Main / build-and-push-docker-image (20.x) (push) Failing after 3m22s

This commit is contained in:
2025-12-05 19:37:35 -05:00
parent 81004f59d2
commit 3b7c18a984
3 changed files with 70 additions and 0 deletions

View File

@@ -2,6 +2,12 @@
FROM node:20-alpine AS base
# Enable Corepack
RUN corepack enable
# Set Yarn to the latest stable version
RUN yarn set version stable
# Install dependencies only when needed
FROM base AS deps
# Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed.