8 lines
136 B
Docker
8 lines
136 B
Docker
|
FROM alpine:latest
|
||
|
|
||
|
RUN apk add --no-cache git git-lfs openssh-client
|
||
|
|
||
|
COPY entrypoint.sh /entrypoint.sh
|
||
|
|
||
|
ENTRYPOINT ["/entrypoint.sh"]
|