-
Notifications
You must be signed in to change notification settings - Fork 7
/
Dockerfile
39 lines (33 loc) · 1.12 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
FROM golang:1.14 as builder
WORKDIR /go/src/github.com/devclub-iitd/DeployBot/src/
COPY ./src/ ./
RUN CGO_ENABLED=0 GOOS=linux go build -o DeployBot -a -ldflags '-extldflags "-static"' .
FROM docker:18.06
LABEL maintainer="devclubiitd@gmail.com"
RUN wget https://github.com/docker/machine/releases/download/v0.14.0/docker-machine-`uname -s`-`uname -m` -O /usr/local/bin/docker-machine && \
chmod +x /usr/local/bin/docker-machine
RUN apk upgrade --update-cache --available
RUN apk add --no-cache \
ca-certificates\
git \
openssh-client\
gnupg\
bash\
wget\
perl\
make\
gawk\
gettext\
curl\
coreutils\
py-pip\
jq \
tzdata \
&& pip install yq
RUN git clone https://github.com/sobolevn/git-secret.git git-secret && cd git-secret && make build && PREFIX="/usr/local" make install
VOLUME ["/root/.docker","/keys"]
WORKDIR /usr/local/bin/
COPY --from=builder /go/src/github.com/devclub-iitd/DeployBot/src/DeployBot .
COPY ./scripts/* /usr/local/bin/
EXPOSE 7777/tcp
ENTRYPOINT ["/usr/local/bin/docker-entrypoint.sh"]