Upload Dockerfile with huggingface_hub
Browse files- Dockerfile +24 -0
Dockerfile
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
FROM python:3.11-slim
|
| 2 |
+
|
| 3 |
+
LABEL org.scandium-labs.dataset.version="v0.1.0-rc.1"
|
| 4 |
+
LABEL org.scandium-labs.dataset.description="Scandium-Dataset — Curated computational materials dataset for SSB discovery"
|
| 5 |
+
|
| 6 |
+
SHELL ["/bin/bash", "-c"]
|
| 7 |
+
|
| 8 |
+
RUN apt-get update && apt-get install -y --no-install-recommends \
|
| 9 |
+
build-essential \
|
| 10 |
+
git \
|
| 11 |
+
wget \
|
| 12 |
+
&& rm -rf /var/lib/apt/lists/*
|
| 13 |
+
|
| 14 |
+
WORKDIR /app
|
| 15 |
+
|
| 16 |
+
COPY requirements.txt .
|
| 17 |
+
RUN pip install --no-cache-dir -r requirements.txt
|
| 18 |
+
|
| 19 |
+
COPY . .
|
| 20 |
+
|
| 21 |
+
RUN python3 -c "import ase, pymatgen, numpy, scipy; print('Dependencies OK')"
|
| 22 |
+
|
| 23 |
+
ENTRYPOINT ["python3"]
|
| 24 |
+
CMD ["--help"]
|