Skip to content
This repository was archived by the owner on Apr 3, 2023. It is now read-only.

Add git to cbmc-builder #4

Merged
merged 1 commit into from
May 18, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM alpine:3.5

LABEL maintainer="DiffBlue Ltd."

RUN apk add --no-cache gcc g++ make ccache bison flex perl-libwww bash
RUN apk add --no-cache gcc g++ make ccache bison flex perl-libwww bash git

# Will be mounted to source during run
WORKDIR /cbmc
2 changes: 1 addition & 1 deletion ubuntu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ LABEL maintainer="DiffBlue Ltd."

RUN apt-get update \
&& apt-get install -y --no-install-recommends \
g++ gcc make ccache bison flex libwww-perl patch \
g++ gcc make ccache bison flex libwww-perl patch git \
&& rm -rf /var/lib/apt/lists/*

# Will be mounted to source during run
Expand Down