docker-images/pluie/alpine/Dockerfile

21 lines
391 B
Docker
Raw Permalink Normal View History

2016-08-06 00:29:06 +00:00
# @app pluie/alpine
# @author a-Sansara https://git.pluie.org/pluie/docker-images
FROM alpine:3.5
2016-07-25 00:28:26 +00:00
MAINTAINER a-Sansara https://github.com/a-sansara
ADD files.tar /scripts
2016-07-29 11:51:56 +00:00
ENV TERM=xterm \
SHENV_CTX=LOCAL \
SHENV_NAME=Alpine \
2016-08-04 01:00:33 +00:00
SHENV_COLOR=97 \
TZ=Europe/Paris
VOLUME /app
RUN apk --update add bash && bash /scripts/install.sh
2016-07-25 00:28:26 +00:00
ENTRYPOINT ["/scripts/main.sh"]