Skip to content
Snippets Groups Projects
Dockerfile 369 B
FROM ubuntu:latest

LABEL maintainer="jan.hoenig@fau.de"
LABEL version="0.1"
LABEL description="Custom docker image for pystencils-benchmark"

ARG DEBIAN_FRONTEND=noninteractive

RUN apt-get update

RUN apt-get install -y \
    python3 \
    python3-pip \
    tox \
    build-essential \
    clang \
    gcc && \
    rm -rf /var/lib/apt/lists/* && \
    apt-get clean