mirror of
https://github.com/renbaoshuo/S2OJ.git
synced 2024-11-08 14:18:40 +00:00
10 lines
168 B
Docker
10 lines
168 B
Docker
|
FROM mysql:latest
|
||
|
|
||
|
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
|