first import
This commit is contained in:
15
Dockerfile
Normal file
15
Dockerfile
Normal 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" ]
|
||||
Reference in New Issue
Block a user