From 5742d0c4232384e8df28abd2539c719d93484f41 Mon Sep 17 00:00:00 2001 From: James Kessler Date: Wed, 14 Aug 2024 11:34:10 -0700 Subject: [PATCH] Change dependency name: yaml-dev. --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 307a8da..ff812b6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ FROM 84codes/crystal:latest AS builder-x86_64 WORKDIR /app # Install required packages -RUN apk add --no-cache libyaml-dev musl-dev +RUN apk add --no-cache yaml-dev musl-dev # Copy the source code COPY . . @@ -20,7 +20,7 @@ FROM 84codes/crystal:latest AS builder-aarch64 WORKDIR /app # Install required packages -RUN apk add --no-cache libyaml-dev +RUN apk add --no-cache yaml-dev # Copy the source code COPY . .