mirror of
https://github.com/alrayyes/docker-node-rsync
synced 2023-11-14 15:56:26 +00:00
8 lines
199 B
Docker
8 lines
199 B
Docker
FROM node:8
|
|
ADD VERSION .
|
|
RUN apt-get update && \
|
|
apt-get -y install rsync apt-utils lftp && \
|
|
apt-get -y remove apt-utils && \
|
|
apt-get -y autoremove && \
|
|
rm -rf /var/lib/apt/lists/*
|