From 8f0057b54e4f7ad9d87215ee11f1eaa0d5af70f6 Mon Sep 17 00:00:00 2001 From: Emmie Maeda Date: Tue, 23 Apr 2024 20:54:06 -0400 Subject: [PATCH] Add both libmagic. --- install/aws/dev/docker/api/Dockerfile | 2 +- install/aws/prod/docker/api/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/install/aws/dev/docker/api/Dockerfile b/install/aws/dev/docker/api/Dockerfile index 1c2d1fbbfa..f710240db9 100644 --- a/install/aws/dev/docker/api/Dockerfile +++ b/install/aws/dev/docker/api/Dockerfile @@ -6,7 +6,7 @@ FROM rust:alpine AS rust # Install system dependencies RUN apk update -RUN apk add --no-cache build-base libmagic +RUN apk add --no-cache build-base libmagic libmagic-static # Copy source RUN mkdir /src diff --git a/install/aws/prod/docker/api/Dockerfile b/install/aws/prod/docker/api/Dockerfile index 60cd3c5216..b648337351 100644 --- a/install/aws/prod/docker/api/Dockerfile +++ b/install/aws/prod/docker/api/Dockerfile @@ -6,7 +6,7 @@ FROM rust:alpine AS rust # Install system dependencies RUN apk update -RUN apk add --no-cache build-base libmagic +RUN apk add --no-cache build-base libmagic libmagic-static # Copy source RUN mkdir /src