From f23cf4db50a276502ef8b366e4a03aa20217ae9c Mon Sep 17 00:00:00 2001 From: FasterSpeeding Date: Sun, 1 Dec 2024 20:56:58 +0000 Subject: [PATCH] Update Dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index ff0cd36..4ef3e48 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM registry.access.redhat.com/ubi9/python-312@sha256:d1244378f7ab72506d8d91cadebbf94c893c2828300f9d44aee4678efec62db9 as install +FROM registry.access.redhat.com/ubi9/python-312@sha256:d1244378f7ab72506d8d91cadebbf94c893c2828300f9d44aee4678efec62db9 AS install WORKDIR /code @@ -10,7 +10,7 @@ RUN pip install uv && \ FROM registry.access.redhat.com/ubi9/python-312@sha256:d1244378f7ab72506d8d91cadebbf94c893c2828300f9d44aee4678efec62db9 -COPY --from=install /workspace/.venv ./venv +COPY --from=install /code/.venv ./venv COPY ./runner.py ./runner.py RUN pip install -Ur requirements.txt