Fix Docker build (forgot --features)
And update diesel_cli in Docker too
This commit is contained in:
parent
915b9bb0e5
commit
fe3df74986
|
@ -12,10 +12,10 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
|
||||||
libssl-dev
|
libssl-dev
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
COPY Cargo.toml Cargo.lock ./
|
COPY Cargo.toml Cargo.lock ./
|
||||||
RUN cargo install diesel_cli --no-default-features --features postgres --version '=1.2.0'
|
RUN cargo install diesel_cli --no-default-features --features postgres --version '=1.3.0'
|
||||||
COPY . .
|
COPY . .
|
||||||
RUN cargo install --force
|
RUN cargo install --force --no-default-features --features postgres
|
||||||
RUN cargo install --path plume-cli --force
|
RUN cargo install --path plume-cli --force --no-default-features --features postgres
|
||||||
RUN rm -rf target/debug/incremental
|
RUN rm -rf target/debug/incremental
|
||||||
CMD ["plume"]
|
CMD ["plume"]
|
||||||
EXPOSE 7878
|
EXPOSE 7878
|
||||||
|
|
Loading…
Reference in New Issue