From fd9dc13396eeb9ebf804737804297ac4a3244b05 Mon Sep 17 00:00:00 2001 From: Zeitsperre <10819524+Zeitsperre@users.noreply.github.com> Date: Tue, 18 Jul 2023 15:05:10 -0400 Subject: [PATCH] remove Dockerfile --- Dockerfile | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index d3ac19bb..00000000 --- a/Dockerfile +++ /dev/null @@ -1,33 +0,0 @@ -# vim:set ft=dockerfile: -ARG BASE_IMAGE_TAG -FROM pavics/workflow-tests:${BASE_IMAGE_TAG:-latest} -ARG DEBIAN_FRONTEND=noninteractive -ENV PIP_ROOT_USER_ACTION=ignore -LABEL org.opencontainers.image.authors="https://github.com/ouranosinc/pavics-sdi" -LABEL Description="PAVICS-SDI-TESTING-IMAGE" Vendor="Birdhouse" Version="1.3.0" - -# root-level commands -USER root - -# Install build tools -RUN apt-get install --yes build-essential \ - && apt-get clean \ - && rm -rf /var/lib/apt/lists/* - -# Switch to /code directory -WORKDIR /code - -# Build finch environment -COPY environment-dev.yml /code -RUN mamba install -n birdy python=3.8 --yes \ - && mamba env update -n birdy -f environment-dev.yml \ - && mamba clean --all --yes - -# Add the finch conda environment to the path -ENV PATH /opt/conda/envs/birdy/bin:$PATH - -# Copy finch source code -COPY . /code - -# Build the documentation -CMD ["make", "--directory=/code/docs", "html"]