From e51aa5e00c58dd42ccc04496127ab8e5e4ca82df Mon Sep 17 00:00:00 2001 From: Redume Date: Mon, 16 Dec 2024 21:42:46 +0300 Subject: [PATCH] chore(chart): Removed unnecessary file copying --- chart/Dockerfile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/chart/Dockerfile b/chart/Dockerfile index 4ea8ad0..8a799a1 100644 --- a/chart/Dockerfile +++ b/chart/Dockerfile @@ -2,11 +2,9 @@ FROM python:3.13 WORKDIR / -COPY ./requirements.txt ./ +COPY . . RUN pip3 install --no-cache-dir --upgrade -r ./requirements.txt -COPY . . - EXPOSE 3030 CMD ["python", "main.py"] \ No newline at end of file