forked from janeczku/docker-dropbox
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
8 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,11 +3,16 @@ MAINTAINER Jan Broer <[email protected]> | |
ENV DEBIAN_FRONTEND noninteractive | ||
|
||
# Following 'How do I add or remove Dropbox from my Linux repository?' - https://www.dropbox.com/en/help/246 | ||
RUN echo 'deb http://linux.dropbox.com/debian jessie main' > /etc/apt/sources.list.d/dropbox.list \ | ||
&& apt-key adv --keyserver hkp://pool.sks-keyservers.net:80 --recv-keys 1C61A2656FB57B7E4DE0F4C1FC918B335044912E \ | ||
RUN apt-get -qqy update \ | ||
&& apt-get -qqy upgrade \ | ||
&& apt-get -qqy install libc6 libglapi-mesa libxdamage1 libxfixes3 libxcb-glx0 libxcb-dri2-0 \ | ||
libxcb-dri3-0 libxcb-present0 libxcb-sync1 libxshmfence1 libxxf86vm1 libglapi-mesa \ | ||
libatomic1 gnupg ca-certificates curl python-gpgme python3-gpg \ | ||
&& echo 'deb http://linux.dropbox.com/debian stretch main' > /etc/apt/sources.list.d/dropbox.list \ | ||
&& apt-key adv --keyserver ipv4.pool.sks-keyservers.net --recv-keys 1C61A2656FB57B7E4DE0F4C1FC918B335044912E \ | ||
&& apt-get -qqy update \ | ||
# Note 'ca-certificates' dependency is required for 'dropbox start -i' to succeed | ||
&& apt-get -qqy install ca-certificates curl python-gpgme libatomic1 dropbox \ | ||
&& apt-get -qqy install dropbox \ | ||
# Perform image clean up. | ||
&& apt-get -qqy autoclean \ | ||
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* \ | ||
|