Skip to content

Commit ee7c727

Browse files
committed
Containerfile: Use version var, entrypoint is bash
Use simpler version enviroment variable, to standarize container versioning internally. Set entrypoint to bash by default, since is the most desired behaviour when running locally, being entrypoint.sh only useful on systemd files, which can set the `--entrypoint` anyway. Signed-off-by: Jorge Marques <jorge.marques@analog.com>
1 parent 62183e3 commit ee7c727

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

container/Containerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM opensuse/leap:16.0
22

3-
ENV runner_labels=repo-only,v4
3+
ENV version=v4
44
ARG runner_version=2.331.0
55
ARG runner_version_sha=5fcc01bd546ba5c3f1291c2803658ebd3cedb3836489eda3be357d41bfcf28a7
66
ARG bashrc=https://raw.githubusercontent.com/analogdevicesinc/doctools/refs/heads/ci/bashrc
@@ -54,5 +54,5 @@ WORKDIR /home/runner
5454
RUN curl -o .bashrc -L ${bashrc} ; \
5555
chmod +x .bashrc
5656

57-
ENTRYPOINT ["/usr/local/bin/entrypoint.sh"]
57+
ENTRYPOINT ["/bin/bash"]
5858

0 commit comments

Comments
 (0)