Spaces:
Sleeping
Sleeping
File size: 132 Bytes
1a2153f |
1 2 3 4 5 6 7 8 9 10 11 |
FROM python:3.11
RUN apt update
RUN apt install -y gcc cmake wget
RUN pip install --upgrade pip
WORKDIR /work
CMD ["/bin/bash"]
|