Skip to content
Snippets Groups Projects

Add basic CI/CD functionality

Merged Mick Veldhuis requested to merge add-cicd-pipeline into main
1 file
+ 8
2
Compare changes
  • Side-by-side
  • Inline
FROM python:3.12
FROM ubuntu:22.04
RUN python -m pip install --upgrade cwltool
\ No newline at end of file
# This Docker image contains the bare necesities to
# validate the project's CWL scripts.
RUN export DEBIAN_FRONTEND=noninteractive && \
apt-get update && \
apt-get install -y \
cwltool && \
rm -rf /var/lib/apt/lists/*
\ No newline at end of file
Loading