mirror of
https://github.com/newnius/Dockerfiles.git
synced 2025-06-06 08:11:54 +00:00
13 lines
421 B
Docker
13 lines
421 B
Docker
FROM debian:9-slim
|
|
|
|
MAINTAINER Newnius <newnius.cn@gmail.com>
|
|
|
|
RUN apt-get update && apt-get install curl gnupg2 -y && \
|
|
curl https://mega.nz/linux/MEGAsync/Debian_9.0/amd64/megacmd-Debian_9.0_amd64.deb --output megacmd.deb && \
|
|
echo path-include /usr/share/doc/megacmd/* > /etc/dpkg/dpkg.cfg.d/docker && \
|
|
apt install ./megacmd.deb -y && \
|
|
rm megacmd.deb && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
CMD ["sleep", "infinity"]
|