Skip to content

Commit

Permalink
remove python2 requirements from dockerfile install as EOF is approached
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Gadd committed Jul 19, 2019
1 parent c7efed9 commit 4f6ec1b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,11 @@ RUN apt-get -y update \
# pip
RUN git clone https://github.com/matthewgadd/RobotCarDataset-Scraper.git \
&& cd RobotCarDataset-Scraper \
&& pip install -r requirements.txt \
&& pip3 install -r requirements.txt

# alias
RUN echo 'alias python=python3' >> /root/.bashrc \
&& echo 'alias pip=pip3' >> /root/.bashrc

# entry point at a working dir
ENTRYPOINT ["/bin/bash"]

0 comments on commit 4f6ec1b

Please sign in to comment.