Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 3e4ffd8

Browse files
committedSep 8, 2020
Update for repository rename to judge0/compilers.
1 parent 11ef657 commit 3e4ffd8

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed
 

‎README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
# Judge0 API Base
1+
# Compilers
22
<a href="https://www.producthunt.com/posts/judge0-ide" target="_blank"><img src="https://api.producthunt.com/widgets/embed-image/v1/featured.svg?post_id=179885&theme=light" alt="" height="43px" /></a>
33
<a href="https://patreon.com/hermanzdosilovic" target="_blank"><img src="https://c5.patreon.com/external/logo/become_a_patron_button@2x.png" alt="" height="43px" /></a>
44
<a href="https://paypal.me/hermanzdosilovic" target="_blank"><img src="https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif" alt="Donate with PayPal" height="43px" /></a>
55

66
## About
7-
**Judge0 API Base** is an base Docker image with installed compilers, interpreters and [sandbox](https://github.com/ioi/isolate).
7+
This is a Docker image with installed compilers, interpreters and [sandbox](https://github.com/ioi/isolate). It is used as a base image for [Judge0](https://github.com/judge0/judge0).
88

99
## Get Started
1010
<a href="https://rapidapi.com/hermanzdosilovic/api/judge0" target="_blank"><img src="https://storage.googleapis.com/code-snippets/connect-on-rapidapi-light.png" width="215px" alt="Connect on RapidAPI"></a>
1111
<span style="margin-left: 20px"></span>
1212

13-
or [deploy](https://github.com/judge0/api/blob/master/CHANGELOG.md#deployment-procedure) on your server.
13+
or [deploy](https://github.com/judge0/judge0/blob/master/CHANGELOG.md#deployment-procedure) on your server.
1414

1515
## Supported Languages
1616
### [Standard Edition](https://rapidapi.com/hermanzdosilovic/api/judge0)

‎bin/debug-tests

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
[[ ! -v IMAGE ]] && IMAGE=judge0/api-base:1.0.0
2+
[[ ! -v IMAGE ]] && IMAGE=judge0/compilers:latest
33
cd tests
44
echo "Opening shell for debugging inside Docker container of image $IMAGE"
55
docker run -it --rm -v $PWD:/tests -w /tests --privileged $IMAGE bash

‎bin/run-tests

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
[[ ! -v IMAGE ]] && IMAGE=judge0/api-base:1.0.0
2+
[[ ! -v IMAGE ]] && IMAGE=judge0/compilers:latest
33
cd tests
44
echo "Running tests on image $IMAGE"
55
docker run -it --rm -v $PWD:/tests -w /tests --privileged $IMAGE ./run $@

‎extra/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM judge0/api-base:1.3.0-slim
1+
FROM judge0/compilers:1.3.0-slim
22

33
# Python for ML
44
RUN apt-get update && \

0 commit comments

Comments
 (0)
Please sign in to comment.