mirror of
https://gitee.com/log4j/pig.git
synced 2024-12-22 12:48:58 +08:00
14 lines
327 B
Docker
14 lines
327 B
Docker
FROM registry.cn-hangzhou.aliyuncs.com/dockerhub_mirror/mysql-server:8.0.32
|
|
|
|
MAINTAINER lengleng(wangiegie@gmail.com)
|
|
|
|
ENV TZ=Asia/Shanghai
|
|
|
|
RUN ln -sf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
|
|
|
|
COPY ./pig.sql /docker-entrypoint-initdb.d
|
|
|
|
COPY ./pig_config.sql /docker-entrypoint-initdb.d
|
|
|
|
EXPOSE 3306
|