diff --git a/.docker/make/alpine/Dockerfile b/.docker/make/alpine/Dockerfile deleted file mode 100644 index 356d9a57..00000000 --- a/.docker/make/alpine/Dockerfile +++ /dev/null @@ -1,22 +0,0 @@ -FROM alpine:latest - -MAINTAINER Nikita Sobolev (mail@sobolevn.me) - -# Dependencies and project initialization: - -RUN apk add --no-cache --update \ - man make git ruby ruby-dev bash ruby-bundler \ - ca-certificates libressl libressl-dev build-base -RUN mkdir /code - -# This will increase the container size, but speed up the build, -# since this part will change, while the dependencies won't: - -WORKDIR /code - -# Removing `origin` for good: - -RUN git clone -q https://github.com/sobolevn/git-secret.git && \ - cd git-secret && git remote rm origin - -WORKDIR /code/git-secret