mirror of
https://github.com/Fishwaldo/docker-rsync.git
synced 2025-03-15 19:42:44 +00:00
fix: base from jessie to fix chroot issue
This commit is contained in:
parent
59cc4b2408
commit
95ece7f9b5
1 changed files with 6 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue