1
0
mirror of https://github.com/imapsync/imapsync.git synced 2024-11-17 00:02:29 +01:00

Update Dockerfile

Reverted back to Debian Buster
This commit is contained in:
Daniel Wagner 2020-12-28 09:50:43 +01:00 committed by GitHub
parent 542d5057ea
commit a003ac4399
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,55 +18,48 @@
# Ubuntu latest points to current LTS release # Ubuntu latest points to current LTS release
FROM ubuntu:latest FROM debian:buster
LABEL maintainer="Gilles LAMIRAL <gilles@lamiral.info>" \ LABEL maintainer="Gilles LAMIRAL <gilles@lamiral.info>" \
description="Imapsync" \ description="Imapsync" \
documentation="https://imapsync.lamiral.info/#doc" documentation="https://imapsync.lamiral.info/#doc"
RUN set -xe && \ RUN set -xe && \
apt-get update && \ apt-get update && \
apt-get install -y \ apt-get install -y \
libauthen-ntlm-perl \ libauthen-ntlm-perl \
libclass-load-perl \ libcgi-pm-perl \
libcrypt-ssleay-perl \ libcrypt-openssl-rsa-perl \
libdata-uniqid-perl \ libdata-uniqid-perl \
libdigest-hmac-perl \ libencode-imaputf7-perl \
libdist-checkconflicts-perl \ libfile-copy-recursive-perl \
libencode-imaputf7-perl \ libfile-tail-perl \
libfile-copy-recursive-perl \ libio-socket-inet6-perl \
libfile-tail-perl \ libio-socket-ssl-perl \
libio-compress-perl \ libio-tee-perl \
libio-socket-inet6-perl \ libhtml-parser-perl \
libio-socket-ssl-perl \ libjson-webtoken-perl \
libio-tee-perl \ libmail-imapclient-perl \
libjson-webtoken-perl \ libparse-recdescent-perl \
libmail-imapclient-perl \ libmodule-scandeps-perl \
libmodule-scandeps-perl \ libreadonly-perl \
libnet-dbus-perl \ libregexp-common-perl \
libnet-ssleay-perl \ libsys-meminfo-perl \
libpar-packer-perl \ libterm-readkey-perl \
libreadonly-perl \ libtest-mockobject-perl \
libregexp-common-perl \ libtest-pod-perl \
libsys-meminfo-perl \ libunicode-string-perl \
libterm-readkey-perl \ liburi-perl \
libtest-fatal-perl \ libwww-perl \
libtest-mock-guard-perl \ libtest-nowarnings-perl \
libtest-mockobject-perl \ libtest-deep-perl \
libtest-pod-perl \ libtest-warn-perl \
libtest-requires-perl \ make \
libtest-simple-perl \ cpanminus \
libunicode-string-perl \
liburi-perl \
libtest-nowarnings-perl \
libtest-deep-perl \
libtest-warn-perl \
make \
cpanminus \
wget wget
RUN wget -N https://imapsync.lamiral.info/imapsync && \ RUN wget -N https://imapsync.lamiral.info/imapsync && \
mv imapsync /usr/bin/imapsync && \ mv imapsync /usr/bin/imapsync && \
chmod +x /usr/bin/imapsync chmod +x /usr/bin/imapsync
USER nobody:nogroup USER nobody:nogroup