mirror of https://gitee.com/maxjhandsome/pig
16 lines
356 B
Docker
16 lines
356 B
Docker
FROM mysql:8.0.24
|
|
|
|
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_codegen.sql /docker-entrypoint-initdb.d
|
|
|
|
COPY ./pig_config.sql /docker-entrypoint-initdb.d
|
|
|
|
COPY ./pig_job.sql /docker-entrypoint-initdb.d
|