From 8ce2ee11ecf8f715c293c9fceae6eddb2effa113 Mon Sep 17 00:00:00 2001 From: Thomas Montague Date: Fri, 14 Jun 2024 08:44:18 -0500 Subject: [PATCH] start over, just zlib-dev. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 73b9590..aed6461 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ FROM python:3-alpine -RUN apk upgrade --no-cache && apk add --no-cache libjpeg zlib +RUN apk upgrade --no-cache && apk add --no-cache zlib-dev WORKDIR /app COPY requirements.txt /app/ RUN pip install --no-cache-dir --upgrade -r requirements.txt