From 8204c2f24e190b4c8189919cbce067df810ec4e0 Mon Sep 17 00:00:00 2001 From: rf-opssupport <84499879+rf-opssupport@users.noreply.github.com> Date: Mon, 6 Jan 2025 13:47:05 +0530 Subject: [PATCH] Update Dockerfile --- Dockerfile | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 51c1687..c741ee7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,16 +18,12 @@ RUN apk update && \ pip install --no-cache-dir --upgrade pip && \ pip install awscli -# Set the working directory for the application WORKDIR /app -# Copy requirements file first to install dependencies separately COPY requirements.txt /app/ -# Install Python dependencies RUN pip install --no-cache-dir -r requirements.txt -# Copy the rest of the application files COPY . /app/ # Ensure that entrypoint.sh has executable permissions