Skip to content

Commit

Permalink
refactor(git): use openssl for git
Browse files Browse the repository at this point in the history
  • Loading branch information
zhujian7 committed Feb 12, 2020
1 parent 3c44a85 commit a732ab7
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions build/resolver/git/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
FROM ubuntu:18.10
FROM alpine:3.8

LABEL maintainer="chende@caicloud.io"
LABEL maintainer="zhujian@caicloud.io"

ENV WORKDIR /workspace
WORKDIR $WORKDIR

RUN apt-get update \
&& apt-get install -y git \
&& rm -rf /var/lib/apt/lists/*
RUN apk update && \
apk add --no-cache ca-certificates git bash coreutils

COPY ./build/resolver/git/entrypoint.sh /

Expand Down

0 comments on commit a732ab7

Please sign in to comment.