Skip to content

Commit

Permalink
#57 updated docker images to preserve prettytable (#58)
Browse files Browse the repository at this point in the history
roncewind authored Oct 3, 2023
1 parent 9e96ee2 commit ce552c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -33,7 +33,7 @@ RUN apt update \
&& rm -rf /var/lib/apt/lists/*

# Create and activate virtual environment.
RUN python3 -m venv --without-pip /app/venv
RUN python3 -m venv /app/venv
ENV PATH="/app/venv/bin:$PATH"

# Install packages via PIP.
@@ -42,7 +42,7 @@ COPY requirements.txt .
RUN pip3 install --upgrade pip \
&& pip3 install -r requirements.txt \
&& rm requirements.txt \
&& pip3 uninstall -y pip
&& pip3 uninstall -y setuptools pip

# -----------------------------------------------------------------------------
# Stage: Final

0 comments on commit ce552c1

Please sign in to comment.