Skip to content

Commit

Permalink
added base docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
pooriaPoorsarvi committed Sep 3, 2024
1 parent 56b2b07 commit b0648d6
Show file tree
Hide file tree
Showing 2 changed files with 97 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
include .gitignore

Dockerfile

# Pooria Poorsarvi Tehrani: TODO We still need to remove some files as if the same code is built locally and then docker build is called, they might not be overriden in the build step?


90 changes: 90 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
# Pooria Poorsarvi Tehrani: TODO change the base to something way lighter
FROM ubuntu:24.04

ENV DEBIAN_FRONTEND=noninteractive

# Update the package list and install prerequisites
# Pooria Poorsarvi Tehrani: TODO might not need all of this for installation
RUN apt-get update && apt-get install -y \
software-properties-common \
build-essential \
libssl-dev \
zlib1g-dev \
libbz2-dev \
libreadline-dev \
libsqlite3-dev \
wget \
curl \
llvm \
libncurses5-dev \
libncursesw5-dev \
xz-utils \
tk-dev \
libffi-dev \
liblzma-dev \
lzma \
lzma-dev \
python3-apt

# Pooria Poorsarvi Tehrani: TODO maybe move to even a newer version of python
# Add the deadsnakes PPA for Python 3.10
RUN add-apt-repository ppa:deadsnakes/ppa -y

RUN apt-get update && apt-get install -y python3.10 python3.10-venv python3.10-dev python3.10-distutils
RUN curl -sS https://bootstrap.pypa.io/get-pip.py | python3.10




RUN add-apt-repository ppa:ubuntu-toolchain-r/test -y

RUN python3.10 -m pip install --upgrade pip setuptools wheel

# So weird that alternatives can mess up distro
RUN update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.10 1
RUN update-alternatives --install /usr/bin/python python /usr/bin/python3.10 1

RUN apt-get update -y
# Pooria Poorsarvi Tehrani: TODO check if we should move to 14
RUN apt-get install gcc-13 g++-13 -y
ENV CC=/usr/bin/gcc-13
ENV CXX=/usr/bin/g++-13

RUN apt-get install cmake -y
RUN rm -rf /usr/lib/python3/dist-packages/distro*


RUN pip install conan
RUN pip install meson

RUN apt-get install libglib2.0-dev -y
RUN apt install ninja-build -y

RUN conan profile detect


RUN apt-get update && \
apt-get upgrade -y && \
apt-get install -y git

WORKDIR /qflex

RUN wget https://github.com/parsa-epfl/qflex/releases/download/2024.05/images.tar.xz
RUN tar -xvf images.tar.xz

COPY . /qflex


RUN ./build cq

RUN ./build keenkraken
# Pooria Poorsarvi Tehrani: TODO knottykraken has not been tested with this
RUN ./build knottykraken

RUN ln -s qemu/build/aarch64-softmmu/qemu-system-aarch64 qemu-aarch64





CMD ["./runq", "images/bb-trace"]

0 comments on commit b0648d6

Please sign in to comment.