Sign inSign up

ruxoz/git-alpine

By ruxoz

Updated about 10 years ago

Simply Alpine linux with git and ssh.

Image
0

1.4K

ruxoz/git-alpine repository overview

FROM alpine:3.4

WORKDIR /root/.ssh
COPY id_rsa id_rsa

RUN apk update && apk add git openssh && \
    apk del build-base linux-headers pcre-dev openssl-dev && \
    rm -fr /var/cache/apk/* && \
    chmod 600 id_rsa

WORKDIR /data
VOLUME /data

CMD sh

Tag summary

Content type

Image

Digest

Size

11.9 MB

Last updated

about 10 years ago

docker pull ruxoz/git-alpine