mirror of
https://github.com/linuxserver/git-backup.git
synced 2026-01-09 06:51:47 +08:00
17 lines
213 B
Docker
17 lines
213 B
Docker
FROM lsiobase/alpine:3.5
|
||
MAINTAINER sparklyballs
|
||
|
||
# install packages
|
||
RUN \
|
||
apk add --no-cache \
|
||
curl \
|
||
findutils \
|
||
git \
|
||
python2
|
||
|
||
# add local files
|
||
COPY root/ /
|
||
|
||
# ports and volumes
|
||
VOLUME /backup /config
|