-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update containers and deployment tests
- Loading branch information
Showing
6 changed files
with
27 additions
and
31 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
22 changes: 0 additions & 22 deletions
22
containers/cobald-tardis-deployment-test-env/Dockerfile.centos7
This file was deleted.
Oops, something went wrong.
17 changes: 17 additions & 0 deletions
17
containers/cobald-tardis-deployment-test-env/Dockerfile.ubuntu24_04
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,17 @@ | ||
FROM ubuntu:24.04 | ||
LABEL maintainer="Manuel Giffels <[email protected]>" | ||
|
||
RUN apt-get update && apt-get upgrade -y \ | ||
&& apt-get install -y gcc g++ make curl dirmngr \ | ||
apt-transport-https lsb-release ca-certificates \ | ||
python3 python3-pip language-pack-en git\ | ||
&& apt-get clean \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
RUN curl -sL https://deb.nodesource.com/setup_18.x | bash - | ||
|
||
RUN apt-get install -y nodejs \ | ||
&& apt-get clean \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
SHELL [ "/bin/bash", "--noprofile", "--norc", "-e", "-o", "pipefail", "-c" ] |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM python:3.10-alpine | ||
FROM python:3.11-alpine | ||
LABEL maintainer="Manuel Giffels <[email protected]>" | ||
ARG SOURCE_BRANCH=master | ||
ARG SOURCE_REPO_URL=https://github.com/MatterMiners/tardis | ||
|
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