fix: base from jessie to fix chroot issue

This commit is contained in:
David Stefan 2017-07-12 14:08:05 +01:00
parent 59cc4b2408
commit 95ece7f9b5

View file

@ -1,7 +1,11 @@
FROM alpine:latest
FROM debian:jessie
MAINTAINER David Stefan <stefda@gmail.com>
RUN apk update && apk add rsync
RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get install -yq --no-install-recommends rsync && \
apt-get clean autoclean && \
apt-get autoremove -y && \
rm -rf /var/lib/apt/lists/*
EXPOSE 873
ADD ./entrypoint.sh /entrypoint.sh