Skip to content

Commit

Permalink
Merge pull request #23 from epics-containers/dev
Browse files Browse the repository at this point in the history
update to ibek 1.5.2
  • Loading branch information
gilesknap authored Nov 21, 2023
2 parents 8b86a9c + 32bed29 commit 0084da6
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 2 deletions.
10 changes: 10 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,13 @@ updates:
directory: "/"
schedule:
interval: "daily"

- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"

- package-ecosystem: "pip"
directory: "/"
schedule:
interval: "weekly"
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup docker (missing on MacOS)
if: runner.os == 'macos'
Expand Down
5 changes: 4 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ RUN apt-get update -y && apt-get upgrade -y && \
build-essential \
busybox \
git \
libreadline-dev \
python3-minimal \
python3-pip \
python3-venv \
Expand Down Expand Up @@ -95,7 +96,8 @@ RUN bash /epics/scripts/get-sncseq.sh
RUN make -C ${SUPPORT}/sncseq -j $(nproc)

# setup a global python venv and install ibek
RUN python3 -m venv ${VIRTUALENV} && pip install ibek==1.3.4
COPY requirements.txt /requirements.txt
RUN python3 -m venv ${VIRTUALENV} && pip install -r /requirements.txt

##### runtime preparation stage ################################################

Expand All @@ -112,6 +114,7 @@ FROM environment as runtime
RUN apt-get update -y && apt-get upgrade -y && \
apt-get install -y --no-install-recommends \
libpython3-stdlib \
libreadline8 \
python3-minimal \
&& rm -rf /var/lib/apt/lists/*

Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ibek===1.5.2

0 comments on commit 0084da6

Please sign in to comment.