You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Hydro/.devcontainer/Dockerfile

10 lines
582 B
Docker

FROM mcr.microsoft.com/vscode/devcontainers/typescript-node:18-bullseye
ADD https://github.com/criyle/go-judge/releases/download/v1.6.3/executorserver_1.6.3_linux_amd64 /usr/bin/sandbox
RUN npm install -g yarn && \
sudo apt-get update && sudo apt-get install gcc g++ && \
mkdir -p /root/.hydro /data/file && chmod +x /usr/bin/sandbox && \
chown -R root:root /root /root/.hydro /data/file && \
echo '{"uri":"mongodb://mongo/hydro"}' > /root/.hydro/config.json && \
echo '["@hydrooj/ui-default","@hydrooj/hydrojudge"]' > /root/.hydro/addon.json
ENTRYPOINT sandbox