-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update all the rest of containers to v34 rucio (#285)
* upgrade base image to new rc-2 tag * adapt rucio-clients container to v34
- Loading branch information
1 parent
154efac
commit 688206f
Showing
6 changed files
with
20 additions
and
51 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
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,16 +1,16 @@ | ||
# ARG TAG should be updated with the latest-1 version in case no tag is provided | ||
ARG TAG=v1.0.0-rc.1 | ||
ARG TAG=v1.0.0-rc.2 | ||
ARG BUILD_DATE | ||
|
||
FROM ghcr.io/vre-hub/vre-base-ops:${TAG} | ||
LABEL maintainer="VRE Team @ CERN 22/23 - E. Garcia, E. Gazzarrini, D. Gosein" | ||
LABEL maintainer="VRE Team @ CERN 23/24 - E. Garcia, G. Guerrieri" | ||
LABEL org.opencontainers.image.source https://github.com/vre-hub/vre | ||
LABEL org.label-schema.build-date=${BUILD_DATE} | ||
|
||
# Workdir is /home | ||
COPY produce_noise.sh requirements.txt rses.txt /home/ | ||
RUN chmod +x ./produce_noise.sh | ||
RUN pip install -r /home/requirements.txt | ||
RUN python -m pip install -r /home/requirements.txt | ||
|
||
ENTRYPOINT ["/bin/bash"] | ||
|