This repository has been archived by the owner on Sep 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch to using alpine as a base instead of alpine/git.
This image is very out of date and contains openssl versions with vulnerabilities.
- Loading branch information
1 parent
184e08f
commit eddda9d
Showing
2 changed files
with
6 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
FROM alpine/git | ||
|
||
COPY README.md bin/* / | ||
FROM alpine:3.10.3 | ||
|
||
ENV GIT_REPOS_PATH=/git-repos | ||
|
||
ENTRYPOINT /entrypoint.sh && exec crond -f | ||
|
||
RUN apk add -U git less openssh | ||
|
||
COPY README.md bin/* / |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters