forked from repo-sync/github-sync
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
18 lines (14 loc) · 737 Bytes
/
Dockerfile
File metadata and controls
18 lines (14 loc) · 737 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
FROM alpine
LABEL \
org.opencontainers.image.title="GitHub Repo Sync" \
org.opencontainers.image.description="⤵️ A GitHub Action for syncing current repository with remote" \
org.opencontainers.image.url="https://github.com/repo-sync/github-sync" \
org.opencontainers.image.documentation="https://github.com/marketplace/actions/github-sync" \
org.opencontainers.image.source="https://github.com/repo-sync/github-sync" \
org.opencontainers.image.licenses="MIT" \
org.opencontainers.image.authors="Wei He <github@weispot.com>" \
maintainer="Wei He <github@weispot.com>"
RUN apk add --no-cache git openssh-client && \
echo "StrictHostKeyChecking no" >> /etc/ssh/ssh_config
ADD *.sh /
ENTRYPOINT ["/entrypoint.sh"]