File tree Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 19
19
runs-on : ubuntu-24.04
20
20
steps :
21
21
- uses : actions/checkout@v4
22
+ - uses : docker/setup-compose-action@v1
23
+ with :
24
+ version : latest
22
25
- name : Install system dependencies
23
26
run : |
24
27
sudo apt install -yq python3-pip python3-setuptools-scm
Original file line number Diff line number Diff line change 14
14
- uses : actions/checkout@v4
15
15
with :
16
16
ref : ${{ inputs.branch }}
17
+ - uses : docker/setup-compose-action@v1
18
+ with :
19
+ version : latest
17
20
- name : Install system dependencies
18
21
run : |
19
22
sudo apt install -yq python3-pip python3-setuptools-scm
Original file line number Diff line number Diff line change 1
1
FROM debian:bookworm-slim
2
2
3
- MAINTAINER "Kasper Revsbech" < [email protected] >
3
+ LABEL org.opencontainers.image.authors= " [email protected] "
4
4
5
5
ENV DEBIAN_FRONTEND=noninteractive
6
6
@@ -18,7 +18,7 @@ RUN set -e ;\
18
18
COPY --chown=root:root ./authorized_keys /root/.ssh/authorized_keys
19
19
20
20
# 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"
22
22
RUN echo "export VISIBLE=now" >> /etc/profile
23
23
24
24
EXPOSE 2222
You can’t perform that action at this time.
0 commit comments