mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-07 05:22:56 +00:00
24 lines
521 B
Docker
24 lines
521 B
Docker
FROM rust:1.58-slim-buster
|
|
WORKDIR /home/circleci/project
|
|
|
|
RUN set -e \
|
|
&& apt-get update \
|
|
&& apt-get -yq install \
|
|
automake \
|
|
libtool \
|
|
build-essential \
|
|
bison \
|
|
flex \
|
|
libreadline-dev \
|
|
zlib1g-dev \
|
|
libxml2-dev \
|
|
libseccomp-dev \
|
|
pkg-config \
|
|
libssl-dev \
|
|
clang
|
|
|
|
RUN set -e \
|
|
&& rustup component add clippy \
|
|
&& cargo install cargo-audit \
|
|
&& cargo install --git https://github.com/paritytech/cachepot
|