piston / Dockerfile
Prajith04's picture
Update Dockerfile
a137291 verified
raw
history blame
303 Bytes
FROM ubuntu:22.04
WORKDIR /app
RUN apt update && apt install -y wget unzip sudo docker.io docker-compose \
&& apt clean && rm -rf /var/lib/apt/lists/*
COPY --chown=user ./docker-compose.yml docker-compose.yml
COPY --chown=user ./judge0.conf judge0.conf
COPY . /app
CMD ["docker-compose", "up"]