2020-07-02 12:46:56 +02:00
|
|
|
FROM rust:1-buster
|
2019-01-09 17:48:18 +01:00
|
|
|
|
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
|
|
ca-certificates \
|
|
|
|
gettext \
|
|
|
|
postgresql-client \
|
|
|
|
libpq-dev \
|
|
|
|
git \
|
|
|
|
curl \
|
|
|
|
gcc \
|
|
|
|
make \
|
|
|
|
openssl \
|
2020-12-06 23:47:11 +01:00
|
|
|
libssl-dev\
|
|
|
|
clang
|
2019-01-09 17:48:18 +01:00
|
|
|
|
|
|
|
WORKDIR /scratch
|
|
|
|
COPY script/wasm-deps.sh .
|
|
|
|
RUN chmod a+x ./wasm-deps.sh && sleep 1 && ./wasm-deps.sh
|
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
COPY Cargo.toml Cargo.lock rust-toolchain ./
|
2021-02-12 06:34:32 +01:00
|
|
|
RUN rustup component add rustfmt clippy
|
2021-02-11 19:37:37 +01:00
|
|
|
RUN cargo install wasm-pack
|
2019-01-09 17:48:18 +01:00
|
|
|
|
|
|
|
COPY . .
|
|
|
|
|
|
|
|
RUN chmod a+x ./script/plume-front.sh && sleep 1 && ./script/plume-front.sh
|
|
|
|
RUN cargo install --path ./ --force --no-default-features --features postgres
|
|
|
|
RUN cargo install --path plume-cli --force --no-default-features --features postgres
|
|
|
|
RUN cargo clean
|
|
|
|
|
|
|
|
CMD ["plume"]
|
|
|
|
|
|
|
|
EXPOSE 7878
|