first import

This commit is contained in:
Cabillot Julien
2018-05-09 19:57:19 -04:00
commit 0e06d8b45a
2 changed files with 38 additions and 0 deletions

15
Dockerfile Normal file
View File

@@ -0,0 +1,15 @@
FROM "alpine:3.7"
LABEL maintainer="Cabillot Julien <dockerimages@cabillot.eu>"
RUN apk add --no-cache mysql-client && \
adduser -D muser
# Add Tini
#ENV "TINI_VERSION" "v0.16.1"
#ADD "https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini" "/tini"
#RUN chmod +x "/tini"
#ENTRYPOINT ["/tini", "--"]
USER "muser"
ENTRYPOINT [ "/usr/local/bin/mysql" ]