Skip to content

Commit d7903e2

Browse files
authored
Merge pull request #1675 from Bastian-Krause/bst/docker-fixes
Various Docker Fixes
2 parents a293b81 + 84c494b commit d7903e2

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

.github/workflows/docker.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ jobs:
1919
runs-on: ubuntu-24.04
2020
steps:
2121
- uses: actions/checkout@v4
22+
- uses: docker/setup-compose-action@v1
23+
with:
24+
version: latest
2225
- name: Install system dependencies
2326
run: |
2427
sudo apt install -yq python3-pip python3-setuptools-scm

.github/workflows/reusable-unit-tests-docker.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ jobs:
1414
- uses: actions/checkout@v4
1515
with:
1616
ref: ${{ inputs.branch }}
17+
- uses: docker/setup-compose-action@v1
18+
with:
19+
version: latest
1720
- name: Install system dependencies
1821
run: |
1922
sudo apt install -yq python3-pip python3-setuptools-scm

dockerfiles/staging/dut/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM debian:bookworm-slim
22

3-
MAINTAINER "Kasper Revsbech" <[email protected]>
3+
LABEL org.opencontainers.image.authors="[email protected]"
44

55
ENV DEBIAN_FRONTEND=noninteractive
66

@@ -18,7 +18,7 @@ RUN set -e ;\
1818
COPY --chown=root:root ./authorized_keys /root/.ssh/authorized_keys
1919

2020
# As sshd scrubs ENV variables if they are set by the ENV varibale ensure to put the into /etc/profile as shown below
21-
ENV NOTVISIBLE "in users profile"
21+
ENV NOTVISIBLE="in users profile"
2222
RUN echo "export VISIBLE=now" >> /etc/profile
2323

2424
EXPOSE 2222

0 commit comments

Comments
 (0)