You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
357 B
10 lines
357 B
FROM mysql:latest
|
|
MAINTAINER MascoSkray <MascoSkray@gmail.com>
|
|
|
|
#Update apt and install curl
|
|
RUN apt-get update && apt-get install -y curl
|
|
#Run the latest UOJ Community verison db install script
|
|
RUN export RAW_URL=https://raw.githubusercontent.com/UniversalOJ/UOJ-System/master && curl $RAW_URL/install/db/install.sh | sh
|
|
|
|
ENV LANG=C.UTF-8 TZ=Asia/Shanghai
|