new base
Some checks failed
Main / build-and-push-docker-image (20.x) (push) Failing after 3m18s

This commit is contained in:
2025-12-05 21:50:44 -05:00
parent 2f577ac2c7
commit e921bcb21c

View File

@@ -1,12 +1,12 @@
# 1. Install dependencies and build the project
FROM node:20-alpine AS builder
FROM ubuntu:latest AS builder
# Set Yarn to the latest stable version
RUN apt-get update && apt-get install -y nodejs yarn
# Enable Corepack
RUN corepack enable
# Set Yarn to the latest stable version
RUN npm install -g yarn
WORKDIR /app
COPY package.json yarn.lock ./