blob: d8486bc15382f24bae144ad80cff3db5c65753c6 [file] [log] [blame]
# Copyright lowRISC contributors.
# Licensed under the Apache License, Version 2.0, see LICENSE for details.
# SPDX-License-Identifier: Apache-2.0
FROM ubuntu:16.04
RUN apt-get update && \
apt-get install -y git curl doxygen python3 python3-pip xsltproc && \
apt-get clean; rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* /usr/share/doc/*
COPY python-requirements.txt ./
RUN pip3 install -r python-requirements.txt