-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathDockerfile
More file actions
47 lines (35 loc) · 1.37 KB
/
Dockerfile
File metadata and controls
47 lines (35 loc) · 1.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
FROM python:3.12-slim
# Environment hygiene
ENV PYTHONDONTWRITEBYTECODE=1 \
PYTHONUNBUFFERED=1 \
PIP_NO_CACHE_DIR=1 \
DEBIAN_FRONTEND=noninteractive
WORKDIR /app
# System deps (slim image minimal; add build-essential if future compiled deps needed)
RUN apt-get update && apt-get install -y --no-install-recommends \
curl \
build-essential \
gfortran \
libopenblas-dev \
pkg-config \
git \
&& rm -rf /var/lib/apt/lists/*
# Copy metadata first for build cache
COPY pyproject.toml README.md ./
COPY requirements.txt ./
# Copy the full source (needed for editable install)
COPY rcpchgrowth rcpchgrowth
# Upgrade pip/setuptools/wheel first
RUN pip install --upgrade pip setuptools wheel
# Install runtime + notebook deps first (ensures wheels pulled before editable wiring)
RUN pip install python-dateutil scipy pandas matplotlib jupyterlab ipykernel
# Install dev/test tools
RUN pip install -r requirements.txt
# Finally perform editable install (should be fast now; minimal build isolation work)
RUN pip install -e . || (echo '--- Editable install failed; running pip debug ---' && python -m pip debug && exit 1)
# Bring in notebooks only after package install so they are never considered for package discovery
COPY notebooks notebooks
# Expose Jupyter port
EXPOSE 8888
# Helpful default: open bash; docker-compose can override with jupyter lab
CMD ["bash"]