mirror of
https://github.com/engineer-man/piston.git
synced 2025-04-22 13:06:27 +02:00
add new executors
This commit is contained in:
parent
9e0c0c40f5
commit
087a6e6a39
6 changed files with 33 additions and 2 deletions
|
@ -1,13 +1,22 @@
|
|||
FROM ubuntu:18.04
|
||||
|
||||
RUN sed -i 's/http:\/\/archive.ubuntu.com\/ubuntu\//http:\/\/mirror.math.princeton.edu\/pub\/ubuntu\//' /etc/apt/sources.list
|
||||
RUN apt-get update
|
||||
RUN apt-get -y install bash-completion
|
||||
RUN echo "tzdata tzdata/Areas select America" > /tmp/tzseed.txt; \
|
||||
echo "tzdata tzdata/Zones/America select Chicago" >> /tmp/tzseed.txt; \
|
||||
debconf-set-selections /tmp/tzseed.txt && \
|
||||
apt-get install -y tzdata && \
|
||||
rm /tmp/tzseed.txt
|
||||
RUN apt-get -y install nano dpkg-dev
|
||||
RUN apt-get -y install build-essential
|
||||
RUN apt-get -y install python
|
||||
RUN apt-get -y install python3
|
||||
RUN apt-get -y install ruby
|
||||
RUN apt-get -y install nodejs
|
||||
RUN apt-get -y install golang
|
||||
RUN apt-get -y install php7.2
|
||||
RUN apt-get -y install r-base
|
||||
RUN apt-get -y install mono-complete
|
||||
|
||||
RUN useradd -m runner
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue