Skip to content
Dockerfile 1.41 KiB
Newer Older
FROM debian:testing-slim
Andreas Klöckner's avatar
Andreas Klöckner committed
MAINTAINER Andreas Kloeckner <inform@tiker.net>
EXPOSE 9941
Neal Davis's avatar
Neal Davis committed
RUN useradd runcode
RUN echo "---------------- BUILD VARIANT: $RLCONTAINER"

RUN echo 'APT::Default-Release "testing";' >> /etc/apt/apt.conf
RUN apt-get -y -o APT::Install-Recommends=0 -o APT::Install-Suggests=0 install \
  python3-scipy \
Neal Davis's avatar
Neal Davis committed
  python3-numpy \
  python3-pip \
  python3-matplotlib \
  python3-pillow \
  graphviz \
  python3-pandas \
  python3-statsmodels \
  python3-skimage \
  python3-sympy \
  python3-pip \
  python3-dev \
  python3-setuptools \
  python3-cffi \
  g++

RUN if [ "$RLCONTAINER" = "full" ] ; then  apt-get -o APT::Install-Recommends=0 -o APT::Install-Suggests=0 -y install \
  "pocl-opencl-icd" \
  "libpocl2" \
  "libpocl2-common" \
  "ocl-icd-libopencl1" \
  "python3-pyopencl" \
  git; \
  fi

RUN if [ "$RLCONTAINER" = "full" ] ; then python3 -m pip install git+https://github.com/inducer/loopy.git; fi
RUN fc-cache

Neal Davis's avatar
Neal Davis committed
RUN mkdir -p /opt/runcode
ADD runcode /opt/runcode/
COPY code_feedback.py /opt/runcode/
COPY code_run_backend.py /opt/runcode/
RUN ls /opt/runcode

RUN sed -i s/TkAgg/Agg/ /etc/matplotlibrc
RUN echo "savefig.dpi : 80" >> /etc/matplotlibrc
RUN echo "savefig.bbox : tight" >> /etc/matplotlibrc
RUN if [ "$RLCONTAINER" = "full" ] ; then pip3 install --upgrade tensorflow; fi
RUN rm -Rf /root/.cache

# may use ./flatten-container.sh to reduce disk space