From eae4d6d595d2dcf8eae2b3fc02f30818207d12c2 Mon Sep 17 00:00:00 2001 From: mjkweon17 Date: Thu, 15 Feb 2024 02:27:21 +0900 Subject: [PATCH] feat: Modify a part of Dockerfile for CI/CD testing --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b592db3..f7ed928 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,7 @@ RUN pip install --no-cache-dir -r requirements/prod.txt # Copy the entire FastAPI project to the container COPY /src /app -COPY .env /app +# COPY .env /app # Expose the port that your FastAPI app will run on EXPOSE 8080