Skip to content

Commit

Permalink
feat: setup build environment
Browse files Browse the repository at this point in the history
  • Loading branch information
henrylee97 authored and seongjoonh committed Nov 9, 2023
1 parent 7e5ede5 commit e75445a
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion C/flint-1/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,20 @@ RUN export DEBIAN_FRONTEND=noninteractive \
&& apt-get update \
&& apt-get install -y --no-install-recommends \
autoconf \
automake \
build-essential \
jq \
libgmp-dev \
libmpfr-dev \
libtool \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*

RUN mkdir -p /workspace
WORKDIR /workspace
COPY . /workspace

WORKDIR /workspace
RUN export BUGGY_PATH=$(cat metadata.json | jq -r ".buggyPath") \
&& cd $BUGGY_PATH \
&& ./bootstrap.sh \
&& ./configure

0 comments on commit e75445a

Please sign in to comment.