rax-remote-v2/db/Dockerfile

14 lines
283 B
Docker
Raw Normal View History

2024-01-31 16:31:50 +08:00
FROM mysql/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_codegen.sql /docker-entrypoint-initdb.d
EXPOSE 3306