Download openssh

This commit is contained in:
srueda99
2022-04-18 14:38:40 -05:00
parent c659fcf990
commit a8768e1751
3 changed files with 7 additions and 5 deletions

View File

@@ -4,5 +4,7 @@ FROM alpine
COPY . /
# Grant executable permission on the script.
RUN ["chmod", "+x", "/entrypoint.sh"]
RUN ["apk", "update"]
RUN ["apk", "add", "git", "openssh"]
# Runs the script.
ENTRYPOINT [ "/entrypoint.sh" ]