Skip to content

Commit

Permalink
Update Dockerfile (antoinelame#70)
Browse files Browse the repository at this point in the history
Fixed ubuntu version number, add pip upgrade, remove pip3 install opencv (already in requirements.txt)
  • Loading branch information
balezz authored Jan 19, 2022
1 parent 185601a commit 2e5fd05
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
@@ -1,4 +1,4 @@
FROM ubuntu:latest
FROM ubuntu:18.04
RUN apt-get update
RUN apt install -y python3
RUN apt install -y python3-pip
Expand All @@ -7,7 +7,7 @@ RUN apt install -y libsm6
RUN apt install -y libxext6
RUN apt install -y libxrender1
RUN apt install -y libfontconfig1
RUN pip3 install opencv-python
RUN pip3 install --upgrade pip
COPY . /home/GazeTracking
WORKDIR /home/GazeTracking
RUN pip3 install -r requirements.txt

0 comments on commit 2e5fd05

Please sign in to comment.