Spaces:
Build error
Build error
| FROM ubuntu:22.04 | |
| # install basic packages | |
| RUN apt-get update && apt-get install -y \ | |
| curl \ | |
| wget \ | |
| git \ | |
| vim \ | |
| nano \ | |
| unzip \ | |
| zip \ | |
| python3 \ | |
| python3-pip \ | |
| python3-venv \ | |
| python3-dev \ | |
| build-essential \ | |
| openssh-server \ | |
| sudo \ | |
| && rm -rf /var/lib/apt/lists/* | |