From 583aad27c4ee335230990013261a5d8c40e4a0b6 Mon Sep 17 00:00:00 2001 From: Eva Lott Date: Thu, 29 Feb 2024 11:48:36 +0000 Subject: [PATCH] fixed dockerfile --- .github/workflows/ci.yml | 2 +- Dockerfile | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 888eb4d8..f45e2aaa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,7 +21,7 @@ jobs: strategy: matrix: runs-on: ["ubuntu-latest"] # can add windows-latest, macos-latest - python-version: ["3.8", "3.9", "3.10", "3.11"] + python-version: ["3.10", "3.11"] include: # Include one that runs in the dev environment - runs-on: "ubuntu-latest" diff --git a/Dockerfile b/Dockerfile index 8244c0d2..e62863b7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,10 +8,8 @@ FROM ${REGISTRY}/epics-base-linux-developer:${BASE} AS developer ARG PIP_OPTIONS=. # The build stage installs the context into the venv -FROM developer as build COPY . /context WORKDIR /context -RUN pip install . # install python package into /venv RUN pip install ${PIP_OPTIONS}