forked from hswaw/hscloud
16 lines
358 B
Docker
16 lines
358 B
Docker
FROM ubuntu:bionic-20190515
|
|
|
|
RUN set -e -x ;\
|
|
sed -i 's/archive/pl.archive/' /etc/apt/sources.list
|
|
|
|
RUN set -e -x ;\
|
|
export DEBIAN_FRONTEND=noninteractive ;\
|
|
apt-get -y update ;\
|
|
apt-get -y install \
|
|
ca-certificates \
|
|
gnupg2 \
|
|
rsync \
|
|
python \
|
|
gnupg2 \
|
|
python3 ;\
|
|
rm -rf /var/lib/apt/lists
|