From 895498ce7d6ae62eabac797f4d69d6d90b058861 Mon Sep 17 00:00:00 2001 From: James Kessler Date: Wed, 14 Aug 2024 17:14:30 -0700 Subject: [PATCH] Add dependency: liblzma. --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9ef0179..4f07178 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ FROM 84codes/crystal:master-ubuntu-22.04 as builder-x86_64 WORKDIR /app # Install required packages -RUN apt-get update && apt-get install -y libyaml-dev build-essential +RUN apt-get update && apt-get install -y libyaml-dev liblzma-dev build-essential # Copy the source code COPY . . @@ -20,7 +20,7 @@ FROM 84codes/crystal:master-ubuntu-22.04 as builder-aarch64 WORKDIR /app # Install required packages -RUN apt-get update && apt-get install -y libyaml-dev gcc-aarch64-linux-gnu build-essential +RUN apt-get update && apt-get install -y libyaml-dev liblzma-dev gcc-aarch64-linux-gnu build-essential # Copy the source code COPY . .