FROM library/ubuntu:bionic
WORKDIR /opt/oomox-build/

# App and test (xvfb, pylint) deps
RUN apt-get update -y && \
    env DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends gtk+3.0 python3-gi xvfb python3-pip psmisc python3-pystache python3-yaml
RUN pip3 install setuptools && \
    pip3 install pylint flake8

COPY . /opt/oomox-build/
