2024-04-02 19:43:25 +02:00
|
|
|
FROM python:3.11
|
|
|
|
|
|
|
|
RUN apt-get update && apt-get -y upgrade
|
|
|
|
RUN apt-get install -y build-essential
|
|
|
|
|
|
|
|
RUN python -m pip install --upgrade pip
|
|
|
|
COPY requirements.txt /tmp
|
|
|
|
RUN python -m pip install -r /tmp/requirements.txt
|
|
|
|
|
|
|
|
WORKDIR ./app
|
|
|
|
|
|
|
|
COPY ./get_dataset.py ./
|
|
|
|
COPY ./get_stats.py ./
|
2024-05-14 21:36:24 +02:00
|
|
|
COPY train.py ./
|
2024-04-03 09:39:37 +02:00
|
|
|
COPY predict.py ./
|
2024-04-02 19:52:13 +02:00
|
|
|
CMD bash
|