IUM_s464980/Dockerfile

16 lines
325 B
Docker
Raw Permalink Normal View History

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 ./
COPY predict.py ./
2024-04-02 19:52:13 +02:00
CMD bash