49bb8cb0bc
* import migrations via macro * panic on database not to the latest migration * add subcommand to plm * create migration that run tantivy index creation * remove diesel_cli from places it was * use our migration system for tests * create table __diesel_schema_migrations if needed
32 lines
1.2 KiB
Docker
32 lines
1.2 KiB
Docker
FROM debian:stretch-20190326
|
|
ENV PATH="/root/.cargo/bin:${PATH}"
|
|
|
|
#install native/circleci/build dependancies
|
|
RUN apt update &&\
|
|
apt install -y git ssh tar gzip ca-certificates &&\
|
|
apt install -y binutils-dev build-essential cmake curl gcc gettext git libcurl4-openssl-dev libdw-dev libelf-dev libiberty-dev libpq-dev libsqlite3-dev libssl-dev make openssl pkg-config postgresql postgresql-contrib python zlib1g-dev python3-pip
|
|
|
|
#install and configure rust
|
|
RUN curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain nightly-2019-03-23 -y &&\
|
|
rustup component add rustfmt clippy &&\
|
|
rustup component add rust-std --target wasm32-unknown-unknown
|
|
|
|
#compile some deps
|
|
RUN cargo install cargo-web &&\
|
|
rm -fr ~/.cargo/registry
|
|
|
|
#install coverage tools
|
|
RUN curl -L https://github.com/SimonKagstrom/kcov/archive/master.tar.gz | tar xz &&\
|
|
mkdir -p kcov-master/build && cd kcov-master/build && cmake .. && make &&\
|
|
make install && cd ../.. && rm -rf kcov-master
|
|
|
|
#set some compilation parametters
|
|
COPY cargo_config /root/.cargo/config
|
|
|
|
#install selenium for front end tests
|
|
RUN pip3 install selenium
|
|
|
|
#install and configure caddy
|
|
RUN curl https://getcaddy.com | bash -s personal
|
|
COPY Caddyfile /Caddyfile
|