Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Prajith04
/
piston
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
477c613
piston
/
Dockerfile
Prajith04
Update Dockerfile
477c613
verified
2 months ago
raw
Copy download link
history
blame
Safe
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"
]