Dockerfiles/EasyBigdata/Dockerfile

31 lines
458 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 \
2018-01-29 12:28:21 +00:00
cyrus-sasl-dev \
nginx \
linux-headers
RUN ln -s /usr/include/python3.6m /usr/include/python3.6
2017-12-28 08:48:17 +00:00
2018-03-20 03:16:01 +00:00
RUN ln -s /usr/bin/python3.6 /usr/bin/python
2018-03-16 05:55:30 +00:00
2017-12-28 08:48:17 +00:00
WORKDIR /var/www/html
ADD bootstrap.sh /etc/bootstrap.sh
CMD ["/etc/bootstrap.sh"]