mirror of
https://github.com/newnius/Dockerfiles.git
synced 2025-12-13 01:36:43 +00:00
14 lines
334 B
Docker
14 lines
334 B
Docker
FROM python:3.7-slim-stretch
|
|
|
|
MAINTAINER Newnius <newnius.cn@gmail.com>
|
|
|
|
WORKDIR /root
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y wget \
|
|
&& wget -O dropbox.tgz "https://www.dropbox.com/download?plat=lnx.x86_64" \
|
|
&& tar xzf dropbox.tgz \
|
|
&& rm dropbox.tgz
|
|
|
|
ENTRYPOINT ["/root/.dropbox-dist/dropboxd"]
|