-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
31 lines (25 loc) · 1.07 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
############################################################
# Dockerfile
############################################################
# Set the base image
FROM docker:19.03
############################################################
# Configuration
############################################################
ENV VERSION "0.6.3"
############################################################
# Entrypoint
############################################################
COPY docker-entrypoint.sh /usr/local/bin/
############################################################
# Installation
############################################################
RUN apk add --no-cache curl bash &&\
curl -L -o /usr/local/bin/envcli https://dl.bintray.com/envcli/golang/envcli/v${VERSION}/envcli_linux_amd64 &&\
chmod +x /usr/local/bin/envcli &&\
chmod +x /usr/local/bin/docker-entrypoint.sh
############################################################
# Execution
############################################################
ENTRYPOINT [ "docker-entrypoint.sh" ]
CMD [ "envcli", "--help"]