mirror of
https://github.com/Hestia-Homes/ML.git
synced 2026-06-08 11:17:25 +00:00
9 lines
210 B
Docker
9 lines
210 B
Docker
# Dockerfile that can be used for development
|
|
FROM python:3.10.12-slim
|
|
|
|
COPY src/requirements/training/requirements-dev.txt requirements.txt
|
|
|
|
RUN pip install --upgrade pip
|
|
RUN pip install -r requirements.txt
|
|
|
|
|