diff --git a/Dockerfile b/Dockerfile index 541c598..70305ac 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,12 +4,14 @@ ENV PYTHONUNBUFFERED 1 COPY requirements.txt . +RUN pip install --no-cache-dir -r requirements.txt + +RUN python -m dvc pull -r origin + WORKDIR /app COPY . /app/ -RUN pip install --no-cache-dir -r requirements.txt - EXPOSE 5000 CMD ["python3", "run_servers.py"]