From 25ebdd3a0366660a6c95f5e5d76172a180e8b414 Mon Sep 17 00:00:00 2001 From: sverben <59171289+sverben@users.noreply.github.com> Date: Wed, 17 Apr 2024 21:26:27 +0200 Subject: [PATCH] fix: oops --- api/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/Dockerfile b/api/Dockerfile index 7c1c773..4f16a43 100644 --- a/api/Dockerfile +++ b/api/Dockerfile @@ -1,6 +1,6 @@ FROM python:3.11-slim -RUN apt -yy update && apt -yy install ffmpeg cmake build-essentials && apt clean +RUN apt -yy update && apt -yy install ffmpeg cmake build-essential && apt clean COPY app/requirements.txt /tmp/requirements.txt RUN pip install --no-cache-dir -r /tmp/requirements.txt