File tree Expand file tree Collapse file tree 2 files changed +5
-9
lines changed Expand file tree Collapse file tree 2 files changed +5
-9
lines changed Original file line number Diff line number Diff line change 1
- FROM debian:stable-slim
1
+ FROM alpine:3.8
2
2
3
3
COPY build/bin/gitbase /bin
4
4
RUN mkdir -p /opt/repos
@@ -8,15 +8,11 @@ ENV GITBASE_PASSWORD=""
8
8
ENV GITBASE_REPOS=/opt/repos
9
9
EXPOSE 3306
10
10
11
- ENV TINI_VERSION v0.17 .0
12
- ADD https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini /tini
11
+ ENV TINI_VERSION v0.18 .0
12
+ ADD https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini-static-amd64 /tini
13
13
RUN chmod +x /tini
14
14
15
- RUN apt-get update \
16
- && apt-get -y --no-install-recommends install libxml2 git \
17
- && apt-get clean \
18
- && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
19
-
15
+ RUN apk --no-cache add libxml2 git oniguruma libc6-compat
20
16
21
17
ENTRYPOINT ["/tini" , "--" ]
22
18
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ $(MAKEFILE):
18
18
19
19
# we still need to do this for windows
20
20
bblfsh-client :
21
- cd vendor/gopkg.in/bblfsh/client-go.v2 && make dependencies
21
+ cd vendor/gopkg.in/bblfsh/client-go.v3 && make dependencies
22
22
23
23
dependencies : bblfsh-client
24
24
You can’t perform that action at this time.
0 commit comments