docker-images/pluie/alpine/Dockerfile

18 lines
301 B
Docker
Raw Normal View History

2016-07-29 11:51:56 +00:00
FROM alpine:3.4
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"]