aboutsummaryrefslogtreecommitdiff
path: root/app/build/plume/Dockerfile
diff options
context:
space:
mode:
authorQuentin <quentin@dufour.io>2021-01-18 08:18:21 +0100
committerQuentin <quentin@dufour.io>2021-01-18 08:18:21 +0100
commitad6017eea058f7cb6fdf078783f992a4f45a3e15 (patch)
tree6620bcc9e1ea61a5689b763b9ad8280275e35e76 /app/build/plume/Dockerfile
parent79b7273ff2a487d6721d393682c8ad3927467a75 (diff)
parentc642370def01f09d966b3b9c643cfe416ea115cf (diff)
downloadinfrastructure-ad6017eea058f7cb6fdf078783f992a4f45a3e15.tar.gz
infrastructure-ad6017eea058f7cb6fdf078783f992a4f45a3e15.zip
Merge pull request 'Reorganize app/ and add script for secret management' (#29) from test_reorganize into master
Reviewed-on: https://git.deuxfleurs.fr/Deuxfleurs/infrastructure/pulls/29
Diffstat (limited to 'app/build/plume/Dockerfile')
-rw-r--r--app/build/plume/Dockerfile54
1 files changed, 0 insertions, 54 deletions
diff --git a/app/build/plume/Dockerfile b/app/build/plume/Dockerfile
deleted file mode 100644
index 4e05424..0000000
--- a/app/build/plume/Dockerfile
+++ /dev/null
@@ -1,54 +0,0 @@
-FROM rust:1.47.0-slim-buster as builder
-
-RUN apt-get update && \
- apt-get install -y \
- pkg-config \
- git \
- curl \
- postgresql \
- postgresql-contrib \
- libpq-dev \
- gettext \
- git \
- curl \
- gcc \
- make \
- openssl \
- libssl-dev \
- libclang-dev
-
-ARG VERSION
-WORKDIR /opt
-RUN git clone -n https://git.joinplu.me/Plume/Plume.git plume
-
-WORKDIR /opt/plume
-RUN git checkout ${VERSION}
-
-RUN cargo install diesel_cli --no-default-features --features postgres --version '=1.3.0'
-
-# frontend
-RUN cargo install cargo-web
-RUN cargo web deploy -p plume-front --release
-# backend
-RUN cargo install --no-default-features --features postgres -f --path .
-# cli
-RUN cargo install --no-default-features --features postgres --path plume-cli
-RUN cargo clean
-
-#-----------------------------
-FROM debian:bullseye-slim
-
-RUN apt-get update && apt-get install -y --no-install-recommends \
- ca-certificates \
- libpq5 \
- libssl1.1
-
-WORKDIR /app
-
-COPY --from=builder /opt/plume /app
-COPY --from=builder /usr/local/cargo/bin/diesel /usr/local/bin/
-COPY --from=builder /usr/local/cargo/bin/plm /usr/local/bin/
-COPY --from=builder /usr/local/cargo/bin/plume /usr/local/bin/
-COPY plm-start /usr/local/bin/
-
-CMD ["plm-start"]