2024-04-02 23:00:30 +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 ./download.sh ./
|
|
|
|
COPY ./calculate.sh ./
|
2024-04-28 19:06:29 +02:00
|
|
|
COPY ./train.py ./
|
|
|
|
COPY ./test.py ./
|
2024-04-02 23:00:30 +02:00
|
|
|
|
2024-04-28 19:06:29 +02:00
|
|
|
CMD bash download.sh && bash calculate.sh && python train.py && python test.py
|