compneuro/Dockerfile
Ankur Sinha (Ankur Sinha Gmail) 6eaf484f39
feat: add description tag to try and fix build
Currently fails with "malformed task" but not enough information on
what's wrong:

https://koji.fedoraproject.org/koji/taskinfo?taskID=69770521
2021-06-10 14:06:49 +01:00

21 lines
810 B
Docker

FROM registry.fedoraproject.org/fedora:rawhide
ENV NAME=compneuro VERSION=0 ARCH=x86_64
LABEL com.redhat.component="$NAME" \
name="$FGC/$NAME" \
version="$VERSION" \
architecture="$ARCH" \
run="podman run -it IMAGE" \
maintainer="NeuroFedora SIG <neuro-sig@lists.fedoraproject.org>" \
url="https://neuro.fedoraproject.org" \
summary="The CompNeuro container image includes commonly used neuron modelling and simulation tools." \
description="The CompNeuro container image includes commonly used neuron modelling and simulation tools."
# Installing Neuro Fedora Packages and jupyter notebook
RUN dnf --setopt=tsflags=nodocs groupinstall -y --with-optional "Neuron Modelling Simulators" --skip-broken && \
dnf clean all
COPY README.md /
CMD ["/bin/bash"]