Skip to content

Commit

Permalink
Merge pull request #157 from ondrg/dockerfile-better-apt
Browse files Browse the repository at this point in the history
Better apt-get in Dockerfile
  • Loading branch information
xshill authored Oct 5, 2019
2 parents 0794b5e + 36d21ba commit 0047789
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,14 @@

FROM ubuntu:18.04

RUN apt-get update

# Install Dependencies
RUN apt-get install python3 python3-pip -y
RUN apt-get install notify-osd dbus-x11 libdbus-1-dev libdbus-glib-1-dev -y
RUN apt-get update && apt-get install -y \
python3 \
python3-pip \
libdbus-1-dev \
libdbus-glib-1-dev \
notify-osd dbus-x11 \
&& rm -rf /var/lib/apt/lists/*

COPY . /pyrdp

Expand Down

0 comments on commit 0047789

Please sign in to comment.