-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #125 from EUDAT-B2HANDLE/devel
Version 1.4.1
- Loading branch information
Showing
5 changed files
with
87 additions
and
1 deletion.
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
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
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# vim:set ft=dockerfile: | ||
FROM python:3.12 | ||
|
||
RUN useradd jenkins | ||
RUN mkdir -p /home/jenkins/ | ||
RUN chown -R jenkins:jenkins /home/jenkins | ||
|
||
RUN python -m ensurepip --upgrade | ||
|
||
RUN pip install \ | ||
mock \ | ||
pytest \ | ||
pytest-cov \ | ||
setuptools \ | ||
wheel | ||
|
||
RUN pip install -U sphinx | ||
|
||
ADD . /opt/PYHANDLE | ||
RUN cd /opt/PYHANDLE && \ | ||
python setup.py install | ||
|
||
WORKDIR /opt/PYHANDLE/pyhandle/tests | ||
|
||
CMD ["./docker-entrypoint-310.sh", "coverage"] |
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# vim:set ft=dockerfile: | ||
FROM python:3.13 | ||
|
||
RUN useradd jenkins | ||
RUN mkdir -p /home/jenkins/ | ||
RUN chown -R jenkins:jenkins /home/jenkins | ||
|
||
RUN python -m ensurepip --upgrade | ||
|
||
RUN pip install \ | ||
mock \ | ||
pytest \ | ||
pytest-cov \ | ||
setuptools \ | ||
wheel | ||
|
||
RUN pip install -U sphinx | ||
|
||
ADD . /opt/PYHANDLE | ||
RUN cd /opt/PYHANDLE && \ | ||
python setup.py install | ||
|
||
WORKDIR /opt/PYHANDLE/pyhandle/tests | ||
|
||
CMD ["./docker-entrypoint-310.sh", "coverage"] |
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