blog_creation / Dockerfile
Hijiki-HF's picture
practice
1a2153f
raw
history blame contribute delete
132 Bytes
FROM python:3.11
RUN apt update
RUN apt install -y gcc cmake wget
RUN pip install --upgrade pip
WORKDIR /work
CMD ["/bin/bash"]