-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[#426] Pinned docker test framework for 4.2 to Ubuntu 18 and 4.2.12.
- Loading branch information
1 parent
79fd90b
commit 00528d4
Showing
3 changed files
with
12 additions
and
14 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,22 @@ | ||
# | ||
# iRODS Consumer Image. | ||
# | ||
FROM ubuntu:16.04 | ||
FROM ubuntu:18.04 | ||
|
||
# TODO: Remove this line when apt gets its stuff together | ||
RUN sed --in-place --regexp-extended "s/(\/\/)(archive\.ubuntu)/\1nl.\2/" /etc/apt/sources.list | ||
#RUN sed --in-place --regexp-extended "s/(\/\/)(archive\.ubuntu)/\1nl.\2/" /etc/apt/sources.list | ||
|
||
RUN apt-get update && \ | ||
apt-get install -y sudo wget less lsb-release apt-transport-https netcat | ||
apt-get install -y sudo wget less lsb-release apt-transport-https netcat gnupg2 | ||
|
||
RUN wget -qO - https://packages.irods.org/irods-signing-key.asc | apt-key add -; \ | ||
echo "deb [arch=amd64] https://packages.irods.org/apt/ $(lsb_release -sc) main" | tee /etc/apt/sources.list.d/renci-irods.list; \ | ||
apt-get update && \ | ||
apt-get install -y irods-runtime irods-icommands irods-server | ||
apt-get install -y irods-runtime=4.2.12-1~bionic irods-icommands=4.2.12-1~bionic irods-server=4.2.12-1~bionic | ||
|
||
EXPOSE 1247 1248 | ||
|
||
# Set command to execute when launching the container. | ||
ADD start_consumer.sh irods_consumer.input / | ||
RUN chmod u+x /start_consumer.sh | ||
ENTRYPOINT ["./start_consumer.sh"] | ||
ENTRYPOINT ["./start_consumer.sh"] |
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