12 lines
296 B
Docker
12 lines
296 B
Docker
FROM python:3.11-slim
|
|
|
|
COPY docker_requirements.txt .
|
|
COPY wheels /wheels
|
|
RUN pip install --no-cache-dir --no-index --find-links=/wheels -r docker_requirements.txt \
|
|
&& rm -rf /wheels
|
|
|
|
WORKDIR /workspace
|
|
|
|
COPY process_data.py test_util.py test_data.h5 /workspace/
|
|
ENV PYTHONPATH="/workspace"
|