From f87186978a982ba73939cb4ee2e78956512b69e2 Mon Sep 17 00:00:00 2001 From: PedroSiqueira1 Date: Tue, 15 Oct 2024 16:49:22 -0300 Subject: [PATCH] fix: change Docker file --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1824850..e8d0e5d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,6 +16,7 @@ RUN apt-get update && \ # Start Python image FROM python:${PYTHON_VERSION} +SHELL ["/bin/bash", "-o", "pipefail", "-c"] # Install a few dependencies and setup oracle instant client WORKDIR /opt/oracle @@ -45,4 +46,4 @@ RUN python3 -m pip install --no-cache-dir -U "pip>=21.2.4" "prefect==$PREFECT_VE # Install requirements WORKDIR /app COPY . . -RUN python3 -m pip install --prefer-binary --no-cache-dir -U . \ No newline at end of file +RUN python3 -m pip install --prefer-binary --no-cache-dir -U .