-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
14 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 9 additions & 4 deletions
13
...r-file-COMPLIANCE-REPOSITORY-debian10.txt → ...e-COMPLIANCE-REPOSITORY-amazonlinux-2.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,19 @@ | ||
FROM naparuba/debian-10 | ||
FROM amazonlinux:2 | ||
LABEL maintainer="Jean Gabes <[email protected]>" | ||
|
||
ADD test/docker-helper/ / | ||
# Amazon can be slow and it broke tests... | ||
RUN /yum_install yum-plugin-fastestmirror | ||
RUN /yum_install python3 | ||
|
||
# Need for debug and test | ||
RUN /apt_get_install procps | ||
ENV PYTHON_EXE=/usr/bin/python3 | ||
|
||
ADD . /root/opsbro-oss | ||
|
||
|
||
WORKDIR /root/opsbro-oss | ||
|
||
RUN $PYTHON_EXE setup.py install | ||
RUN python3 setup.py install | ||
|
||
# Copy the mail pack into a local one to enable modification | ||
RUN opsbro packs overload global.mongodb | ||
|
25 changes: 0 additions & 25 deletions
25
test/docker-files/docker-file-COMPLIANCE-REPOSITORY-amazonlinux-2017.12.txt
This file was deleted.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
...le-COMPLIANCE-REPOSITORY-ubuntu-20.04.txt → ...le-COMPLIANCE-REPOSITORY-ubuntu-24.04.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM ubuntu:20.04 | ||
FROM ubuntu:24.04 | ||
LABEL maintainer="Jean Gabes <[email protected]>" | ||
|
||
ADD test/docker-helper/ / | ||
|
15 changes: 0 additions & 15 deletions
15
test/docker-files/docker-file-COMPLIANCE-SYSTEM-USER-debian11.txt
This file was deleted.
Oops, something went wrong.
6 changes: 3 additions & 3 deletions
6
...e-COMPLIANCE-SYSTEM-USER-ubuntu-20.04.txt → ...e-COMPLIANCE-SYSTEM-USER-ubuntu-24.04.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
FROM ubuntu:20.04 | ||
FROM ubuntu:24.04 | ||
LABEL maintainer="Jean Gabes <[email protected]>" | ||
|
||
ADD test/docker-helper/ / | ||
RUN /apt_get_install python | ||
RUN /apt_get_install python3 | ||
|
||
ADD . /root/opsbro-oss | ||
|
||
|
||
WORKDIR /root/opsbro-oss | ||
|
||
RUN python setup.py install | ||
RUN python3 setup.py install | ||
|
||
# Copy the mail pack into a local one to enable modification | ||
RUN opsbro packs overload global.linux | ||
|