Skip to content

Commit

Permalink
fix: change Docker file
Browse files Browse the repository at this point in the history
  • Loading branch information
PedroSiqueira1 committed Oct 15, 2024
1 parent 5592feb commit f871869
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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 .
RUN python3 -m pip install --prefer-binary --no-cache-dir -U .

0 comments on commit f871869

Please sign in to comment.