mirror of
https://github.com/linuxserver/git-backup.git
synced 2026-01-09 06:51:47 +08:00
22 lines
364 B
Docker
22 lines
364 B
Docker
FROM lsiobase/alpine:3.8
|
||
|
||
# set version label
|
||
ARG BUILD_DATE
|
||
ARG VERSION
|
||
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
|
||
LABEL maintainer="sparklyballs"
|
||
|
||
RUN \
|
||
echo "install packages" && \
|
||
apk add --no-cache \
|
||
curl \
|
||
findutils \
|
||
git \
|
||
python2
|
||
|
||
# add local files
|
||
COPY root/ /
|
||
|
||
# ports and volumes
|
||
VOLUME /backup /config
|