IUM_s464980/Dockerfile
Sheaza 84ef66131c
All checks were successful
s464980-training/pipeline/head This commit looks good
fix path 2
2024-05-14 21:36:24 +02:00

16 lines
325 B
Docker

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 ./
COPY train.py ./
COPY predict.py ./
CMD bash