summaryrefslogtreecommitdiff
path: root/.circleci/images/x86_64-freebsd/Dockerfile
blob: 1098d7a9aceabdd4c12698e55ba9f6e6609386fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
FROM ubuntu:16.04

RUN apt-get update && apt-get install -y --no-install-recommends \
  autoconf \
  automake \
  bzip2 \
  ca-certificates \
  curl \
  file \
  g++ \
  git \
  make \
  openssh-client \
  patch \
  perl \
  python2.7 \
  python3 \
  software-properties-common \
  sudo \
  wget \
  jq \
  xz-utils

COPY build-toolchain.sh /tmp/
RUN /tmp/build-toolchain.sh x86_64