10 lines
212 B
Docker
10 lines
212 B
Docker
# Runs on Alpine container, latest version.
|
|
FROM alpine
|
|
# Copy the content to the container.
|
|
COPY . /
|
|
RUN chmod +x /entrypoint.sh && \
|
|
apk update && \
|
|
apk add git openssh rsync
|
|
|
|
ENTRYPOINT [ "/entrypoint.sh" ]
|