Skip to content
Snippets Groups Projects

Add basic CI/CD functionality

Merged Mick Veldhuis requested to merge add-cicd-pipeline into main
Compare and Show latest version
1 file
+ 3
2
Compare changes
  • Side-by-side
  • Inline
FROM ubuntu:22.04
# This Docker image contains the bare necesities to
# This Docker image contains the bare necessities to
# validate the project's CWL scripts.
RUN export DEBIAN_FRONTEND=noninteractive && \
apt-get update && \
@@ -19,4 +19,5 @@ RUN python3 -m pip install --no-cache-dir --upgrade \
cwltool
RUN node --version
RUN cwltool --version
\ No newline at end of file
RUN cwltool --version
RUN python3 -m pip list
\ No newline at end of file
Loading