Sign inSign up

sourceryinstitute/docker-base

By sourceryinstitute

•Updated over 8 years ago

A lightweight docker image `FROM debian:testing-slim` to act as a base image for building things

Image
3

2.3K

sourceryinstitute/docker-base repository overview

⁠✨ 🐋 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

Tag summary

Content type

Image

Digest

Size

150 MB

Last updated

over 8 years ago

docker pull sourceryinstitute/docker-base