diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 95998ec..4f4d54d 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -35,4 +35,4 @@ jobs: with: context: . push: true - tags: hal9ai/hal9-docker:latest,hal9ai/hal9-docker:0.2.18 + tags: hal9ai/hal9-docker:latest,hal9ai/hal9-docker:0.2.19 diff --git a/Dockerfile b/Dockerfile index ac27061..6bda955 100644 --- a/Dockerfile +++ b/Dockerfile @@ -33,15 +33,19 @@ RUN curl -fsSL https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor && ACCEPT_EULA=Y apt-get install -y msodbcsql18 RUN apt-get update && \ -apt-get install -y exiftool && \ -apt-get clean && \ -rm -rf /var/lib/apt/lists/* + apt-get install -y exiftool && \ + apt-get clean && \ + rm -rf /var/lib/apt/lists/* RUN apt-get update \ && apt-get install -y tdsodbc unixodbc-dev \ && apt install unixodbc -y \ && apt-get clean -y +RUN apt-get install -y r-base r-base-dev +RUN Rscript -e 'install.packages(c("tidyverse", "torch", "torchvision", "filelock", "pins", "plumber"))' +RUN Rscript -e 'torch::install_torch()' + RUN mkdir /hal9 COPY requirements.txt /hal9