piston / Dockerfile
Prajith04's picture
Update Dockerfile
477c613 verified
raw
history blame
201 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 . /app
CMD ["docker-compose", "up"]