You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

Dockerfile_runcpp 553 B

3 years ago
123456789101112
  1. FROM ubuntu:18.04
  2. WORKDIR /usr/local
  3. RUN mkdir /usr/local/team1 && mkdir /usr/local/team2 && mkdir /usr/local/playback
  4. COPY ./dependency/shell/runserver.sh .
  5. COPY ./dependency/shell/runcpp.sh .
  6. RUN RUN apt-get update && apt-get install --no-install-recommends -y gcc g++ make wget ca-certificates cmake autoconf automake libtool curl unzip git
  7. RUN wget -P . https://cloud.tsinghua.edu.cn/f/e48940314a6d4cdb8bd0/?dl=1
  8. RUN mv 'index.html?dl=1' Server.tar.gz
  9. RUN tar -zxvf Server.tar.gz
  10. WORKDIR /usr/local/PlayerCode
  11. ENTRYPOINT [ "bash","./runserver.sh" ]