mirror of
https://gitee.com/log4j/pig.git
synced 2024-12-22 20:54:25 +08:00
16 lines
356 B
Docker
16 lines
356 B
Docker
FROM mysql:8.0.27
|
|
|
|
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
|