Skip to content

Commit

Permalink
Update Dockerfile for debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
sidbose87 authored Apr 10, 2024
1 parent fadd122 commit 2cc623f
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@ WORKDIR /app


# dependencies for psycopg2
RUN apt-get update && apt-get install --no-install-recommends -y dnsutils=1:9.11.5.P4+dfsg-5.1+deb10u7 libpq-dev=11.16-0+deb10u1 python3-dev=3.7.3-1 \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
RUN apt-get update && \
apt-get install --no-install-recommends -y dnsutils=1:9.11.5.P4+dfsg-5.1+deb10u7 libpq-dev=11.16-0+deb10u1 python3-dev=3.7.3-1 && \
apt-get clean &&\
rm -rf /var/lib/apt/lists/* || echo "Failed to install packages"


# Set environment variables
Expand Down

0 comments on commit 2cc623f

Please sign in to comment.