forked from SBird1337/cexplore
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDockerfile
More file actions
17 lines (16 loc) · 724 Bytes
/
Copy pathDockerfile
File metadata and controls
17 lines (16 loc) · 724 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
FROM devkitpro/devkitarm
RUN apt-get update \
&& DEBIAN_FRONTEND=noninteractive apt-get -y install apt-transport-https wget dirmngr build-essential git binutils-arm-none-eabi libsndfile1-dev libpng-dev python3 && curl -sL https://deb.nodesource.com/setup_12.x | bash - && apt-get -y install nodejs \
&& rm -rf /var/lib/apt/lists/*
COPY agbcc /agbcc
RUN cd /agbcc && ./build.sh && ./install.sh /agbcc_build
RUN mkdir -p /repos && cd /repos && git clone https://github.com/zeldaret/tmc.git
RUN cd /repos/tmc && make setup
RUN mkdir -p /frontends
COPY pycc.py /frontends/
COPY pycat.py /frontends/
COPY compiler-explorer /ce/
RUN mkdir -p /scripts/
COPY update-repo.sh /scripts/
EXPOSE 10240
ENTRYPOINT cd /ce && make