Dockerfiles/EasyBigdata/Dockerfile

27 lines
382 B
Docker
Raw Normal View History

FROM alpine:3.7
2017-12-28 08:48:17 +00:00
MAINTAINER Newnius <newnius.cn@gmail.com>
USER root
RUN apk update && \
apk add \
2017-12-28 08:48:17 +00:00
python3 \
python3-dev \
bash \
make \
2017-12-28 08:48:17 +00:00
gcc \
g++ \
musl-dev \
mariadb-dev \
cyrus-sasl \
cyrus-sasl-dev
RUN ln -s /usr/include/python3.6m /usr/include/python3.6
2017-12-28 08:48:17 +00:00
WORKDIR /var/www/html
ADD bootstrap.sh /etc/bootstrap.sh
CMD ["/etc/bootstrap.sh"]