From c6c8727e9b6e46ece22e8d8cc7ee64e64148b383 Mon Sep 17 00:00:00 2001 From: Zoey Date: Sat, 17 Aug 2024 21:30:49 +0200 Subject: [PATCH] Update Dockerfile Signed-off-by: Zoey --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index c1faab2..8fc7ad6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,10 @@ # syntax=docker/dockerfile:labs FROM python:3.12.5-alpine3.20 AS pip -COPY requirements.txt requirements.txt +COPY requirements.txt /tmp/requirements.txt RUN apk upgrade --no-cache -a && \ apk add --no-cache ca-certificates && \ python3 -m venv /usr/local && \ - pip install --no-cache-dir -r requirements.txt + pip install --no-cache-dir -r /tmp/requirements.txt FROM python:3.12.5-alpine3.20 RUN apk upgrade --no-cache -a && \