Skip to content

Commit

Permalink
fixed dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
josaloroc committed Sep 13, 2024
1 parent c35a149 commit 43a73e0
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions docker/nvidia.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ RUN apt-get install -y postgresql postgresql-client
WORKDIR /screenrpa
COPY . .

# Install graphviz
RUN apt-get update && apt-get install -y graphviz graphviz-dev
# Install libreoffice
RUN apt-get install libreoffice-core-nogui libreoffice-writer-nogui --no-install-recommends --no-install-suggests -y

# Installs python dependencies
RUN python3.10 -m venv venv
RUN ./venv/bin/python -m pip install --upgrade pip
Expand All @@ -37,7 +42,3 @@ RUN apt upgrade libstdc++6 -y
# Installs cudnn8
RUN apt install libcudnn8 libcudnn8-dev -y

# Install graphviz
RUN apt-get update && apt-get install -y graphviz graphviz-dev
# Install libreoffice
RUN apt-get install libreoffice-core-nogui libreoffice-writer-nogui --no-install-recommends --no-install-suggests -y

0 comments on commit 43a73e0

Please sign in to comment.