From 008ecfd6b0f0de3c6485a8c76f4e17aec93c6a08 Mon Sep 17 00:00:00 2001 From: Naramsim Date: Sat, 14 Mar 2026 13:05:09 +0100 Subject: [PATCH] fix: add git to pokeapi image --- Resources/docker/app/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Resources/docker/app/Dockerfile b/Resources/docker/app/Dockerfile index 1ce3eb5a6..01abbd227 100644 --- a/Resources/docker/app/Dockerfile +++ b/Resources/docker/app/Dockerfile @@ -12,6 +12,8 @@ RUN apk add --no-cache --virtual .build-deps gcc g++ musl-dev \ python3 -m pip install -r requirements.txt --no-cache-dir FROM python:3.13.7-alpine +# git is a dependency for the meta endpoint +RUN apk add --no-cache git ENV PYTHONUNBUFFERED=1 ENV DJANGO_SETTINGS_MODULE='config.docker-compose'