sourceryinstitute / docker-base

Light-weight, minimal base image for GCC MPICH OpenCoarrays

Home Page:https://hub.docker.com/r/sourceryinstitute/docker-base/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

✨ 🐋 docker-base 🚢 ✨

layers commit Docker Pulls Maintenance GitHub forks GitHub stars GitHub stars Twitter URL

A lightweight docker image FROM debian:testing-slim to act as a base image for GCC, MPICH, and OpenCoarrays builds

Use this for your own images:

Your Dockerfile might look like this:

FROM sourceryinstitute/docker-base:latest
COPY . /context
WORKDIR /context
RUN # build your app or apt-get install, etc.
ENTRYPOINT ["/bin/bash","-c"]
CMD ["bin/bash -l"]
#etc

See the Dockerfile reference and best practices for further details.

Then you can build and run with something like:

docker build -t my-cool-image .
docker run -it --rm --name my-cool-container my-cool-image

Current Packages

    ca-certificates
    cmake
    curl
    g++
    gcc
    gfortran
    git
    libtool
    make
    openssh-client
    sudo
    wget

GitHub followers Twitter Follow

About

Light-weight, minimal base image for GCC MPICH OpenCoarrays

https://hub.docker.com/r/sourceryinstitute/docker-base/

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:Shell 75.5%Language:Makefile 24.5%