mirror of
https://github.com/renbaoshuo/S2OJ.git
synced 2024-11-08 18:48:42 +00:00
10 lines
165 B
Docker
10 lines
165 B
Docker
FROM mysql:8.0
|
|
|
|
ADD . /opt/uoj_db
|
|
WORKDIR /opt/uoj_db
|
|
|
|
# Run the latest UOJ Community verison db install script
|
|
RUN sh install.sh
|
|
|
|
ENV LANG=C.UTF-8 TZ=Asia/Shanghai
|