https://github.com/unit8co/darts
Raw File
Tip revision: 91c7087e757c5ef3afc53b5fbaccda83dec6b71a authored by Alicja Krzeminska-Sciga on 16 March 2024, 11:05:51 UTC
Add optional inverse transform in historical forecast (#2267)
Tip revision: 91c7087
Dockerfile
FROM ubuntu:latest

# setup packages
RUN apt-get update -y
RUN apt-get install -y python3 python-is-python3 python3-pip default-jre
RUN pip install --upgrade pip

# install python requirements before copying the rest of the files
# this way we can cache the requirements and not have to reinstall them
COPY requirements/ /app/requirements/
RUN pip install -r /app/requirements/dev-all.txt

# copy local files
COPY . /app

# set work directory
WORKDIR /app

# install darts
RUN pip install -e .

# assuming you are working from inside your darts directory:
# docker build . -t darts-test:latest
# docker run -it -v $(pwd)/:/app/ darts-test:latest bash
back to top