17 lines
596 B
Docker
17 lines
596 B
Docker
# Download base image ubuntu 20.04
|
|
FROM ubuntu:20.04
|
|
|
|
# LABEL about the custom image
|
|
LABEL maintainer="aozhiwei@kingsome.cn"
|
|
LABEL version="0.1"
|
|
LABEL description="This is custom Docker Image for \
|
|
the php Services."
|
|
|
|
# RUN sh -c '/bin/echo -e "\n6\n70" | sh Anaconda3-4.4.0-Linux-x86_64.sh'
|
|
# 6 70
|
|
RUN apt update
|
|
RUN apt install -y tzdata
|
|
RUN apt install -y net-tools curl iputils-ping vim mariadb-client redis php php-fpm php-pdo php-mysql php-redis php-mbstring
|
|
#php-pecl-libsodium
|
|
#RUN sh -c '/bin/echo -e "\n6\n70" | apt install -y net-tools iputils-ping mariadb-client php php-fpm'
|