diff --git a/Dockerfile-alpine b/Dockerfile-alpine new file mode 100644 index 0000000..8795281 --- /dev/null +++ b/Dockerfile-alpine @@ -0,0 +1,10 @@ +FROM python:3.8-alpine as builder + +RUN apk update && apk add --no-cache curl bzip2 gcc libffi-dev musl-dev + +RUN pip install datalad pytest ssh_agent_setup + +FROM python:3.8-alpine +COPY --from=builder /usr/local /usr/local + +RUN apk update && apk add --no-cache git openssh-client git-annex