Initial Commit

This commit is contained in:
Aditya Prima 2018-07-13 11:15:58 +07:00
commit eb2d074adb
1 changed files with 16 additions and 0 deletions

16
Dockerfile Normal file
View File

@ -0,0 +1,16 @@
FROM alpine:3.8
LABEL maintainer="<Aditya Prima> aditya.prima@qti.co.id"
# Add s6-overlay
ENV S6_OVERLAY_VERSION=v1.21.4.0
# Install base dependencies
RUN apk add --update --no-cache bash libcap
# Get S6-OVERLAY
ADD https://github.com/just-containers/s6-overlay/releases/download/${S6_OVERLAY_VERSION}/s6-overlay-amd64.tar.gz /tmp/
# Install S6-Overlay
RUN tar xvf /tmp/s6-overlay-amd64.tar.gz -C /
ENTRYPOINT [ "/init" ]