From 4c0f912ba33192c165d84b9bf6c39753d2502456 Mon Sep 17 00:00:00 2001 From: Max Hollmann Date: Tue, 22 Oct 2024 22:19:19 +0200 Subject: [PATCH] fix inconsistent casing in dockerfile --- dashboard/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashboard/Dockerfile b/dashboard/Dockerfile index 2e85b3b..0f34369 100644 --- a/dashboard/Dockerfile +++ b/dashboard/Dockerfile @@ -8,7 +8,7 @@ RUN npm install RUN npm run build # Stage 2: Download Python dependencies -FROM python:3.12-slim as download-python +FROM python:3.12-slim AS download-python COPY server/requirements.txt . RUN pip install -r requirements.txt --user