ium_487187/Dockerfile
Jakub Zaręba 7bad1cc28f s
2023-05-10 21:02:34 +02:00

18 lines
401 B
Docker

FROM ubuntu
RUN apt-get update && apt-get install -y python3 python3-pip unzip
RUN python3 -m pip install pandas numpy tensorflow imbalanced-learn sklearn sacred pymongo
RUN apt-get install -y git
COPY train.py /app/train.py
COPY predictions.py /app/predictions.py
COPY data.csv /app/data.csv
WORKDIR /app
RUN export SACRED_IGNORE_GIT=TRUE
RUN python3 train.py
CMD ["python3", "predictions.py"]