forked from reanahub/reana-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build(docker): create
reana-client
container image (reanahub#710)
Usage example: ```console $ cd reana-demo-root6-roofit $ export REANA_SERVER_URL=https://reana.cern.ch $ export REANA_ACCESS_TOKEN=xxxxxxxxxxxxxxxxxxx $ docker pull docker.io/reanahub/reana-client:0.9.3 $ docker run -i -t --env REANA_SERVER_URL --env REANA_ACCESS_TOKEN --rm -v $PWD:/home/reana docker.io/reanahub/reana-client:0.9.3 run -w test ``` Closes reanahub#709
- Loading branch information
1 parent
3bdf802
commit 3034953
Showing
5 changed files
with
137 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,63 @@ | ||
# This file is part of REANA. | ||
# Copyright (C) 2024 CERN. | ||
# | ||
# REANA is free software; you can redistribute it and/or modify it | ||
# under the terms of the MIT License; see LICENSE file for more details. | ||
|
||
# Use Ubuntu LTS base image | ||
FROM docker.io/library/ubuntu:20.04 | ||
|
||
# Use default answers in installation commands | ||
ENV DEBIAN_FRONTEND=noninteractive | ||
|
||
# Use distutils provided by the standard Python library instead of the vendored one in | ||
# setuptools, so that editable installations are stored in the right directory. | ||
# See https://github.com/pypa/setuptools/issues/3301 | ||
ENV SETUPTOOLS_USE_DISTUTILS=stdlib | ||
|
||
# Add sources to `/code` and work there | ||
WORKDIR /code | ||
COPY . /code | ||
|
||
# Install system dependencies and reana-client in one go | ||
# hadolint ignore=DL3008,DL3013 | ||
RUN apt-get update -y && \ | ||
apt-get install --no-install-recommends -y \ | ||
libpython3.8 \ | ||
python3-pip \ | ||
python3.8 \ | ||
python3.8-dev && \ | ||
apt-get remove -y \ | ||
gcc \ | ||
python3.8-dev && \ | ||
apt-get autoremove -y && \ | ||
apt-get clean && \ | ||
rm -rf /var/lib/apt/lists/* && \ | ||
pip3 install --no-cache-dir kubernetes && \ | ||
pip3 install --no-cache-dir '.[tests]' && \ | ||
rm -rf /code | ||
|
||
# Run container as `reana` user with UID `1000`, which should match | ||
# current host user in most situations | ||
# hadolint ignore=DL3059 | ||
RUN adduser --uid 1000 reana --gid 0 && \ | ||
chown -R reana:root /home/reana | ||
WORKDIR /home/reana | ||
|
||
# Run reana-client upon entry | ||
USER reana | ||
ENTRYPOINT ["reana-client"] | ||
|
||
# Set image labels | ||
LABEL org.opencontainers.image.authors="[email protected]" | ||
LABEL org.opencontainers.image.created="2024-03-14" | ||
LABEL org.opencontainers.image.description="REANA reproducible analysis platform - command-line client" | ||
LABEL org.opencontainers.image.documentation="https://reana-client.readthedocs.io/" | ||
LABEL org.opencontainers.image.licenses="MIT" | ||
LABEL org.opencontainers.image.source="https://github.com/reanahub/reana-client" | ||
LABEL org.opencontainers.image.title="reana-client" | ||
LABEL org.opencontainers.image.url="https://github.com/reanahub/reana-client" | ||
LABEL org.opencontainers.image.vendor="reanahub" | ||
# x-release-please-start-version | ||
LABEL org.opencontainers.image.version="0.9.3" | ||
# x-release-please-end |
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