Skip to content

Commit

Permalink
#49 Undo change so that G2Explorer.py works
Browse files Browse the repository at this point in the history
  • Loading branch information
docktermj committed Oct 3, 2023
1 parent 9e96ee2 commit b37c6af
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,16 +33,15 @@ 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.

COPY requirements.txt .
RUN pip3 install --upgrade pip \
&& pip3 install -r requirements.txt \
&& rm requirements.txt \
&& pip3 uninstall -y pip
&& rm requirements.txt

# -----------------------------------------------------------------------------
# Stage: Final
Expand Down

0 comments on commit b37c6af

Please sign in to comment.