mirror of
https://github.com/Hestia-Homes/ML.git
synced 2026-07-27 22:45:04 +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
|
|
|
|
|