mirror of
https://github.com/newnius/Dockerfiles.git
synced 2025-06-07 00:21:56 +00:00
27 lines
382 B
Docker
27 lines
382 B
Docker
FROM alpine:3.7
|
|
|
|
MAINTAINER Newnius <newnius.cn@gmail.com>
|
|
|
|
USER root
|
|
|
|
RUN apk update && \
|
|
apk add \
|
|
python3 \
|
|
python3-dev \
|
|
bash \
|
|
make \
|
|
gcc \
|
|
g++ \
|
|
musl-dev \
|
|
mariadb-dev \
|
|
cyrus-sasl \
|
|
cyrus-sasl-dev
|
|
|
|
RUN ln -s /usr/include/python3.6m /usr/include/python3.6
|
|
|
|
WORKDIR /var/www/html
|
|
|
|
ADD bootstrap.sh /etc/bootstrap.sh
|
|
|
|
CMD ["/etc/bootstrap.sh"]
|