Skip to content

Commit

Permalink
get rid of copied venv that is probably using a whole different pytho…
Browse files Browse the repository at this point in the history
…n anyways
  • Loading branch information
TeamSPoon committed Aug 27, 2024
1 parent 35f9a21 commit c391b3b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ ARG DEBIAN_FRONTEND=noninteractive
RUN apt update
RUN apt install -y python3 python3-pip libpython3-dev git
RUN apt install -y sudo git curl gcc cmake
RUN apt install -y python3-venv time wget vim bc

# Create user
ENV USER=user
Expand All @@ -29,6 +30,8 @@ WORKDIR ${METTALOG_DIR}
# This COPY is in case we have made local changes
# so we dont have to commit to Github to test them out
COPY ./ ./
# get rid of copied venv that is probably using a whole different python anyways
RUN rm -rf ./venv/
COPY ./INSTALL.sh ./INSTALL.sh
RUN ./INSTALL.sh --easy

Expand Down

0 comments on commit c391b3b

Please sign in to comment.