| 1234567891011121314151617181920212223242526272829303132333435 |
- FROM jdrouet/rust-nightly:buster-slim AS base
- RUN apt-get update \
- && apt-get install -y libpq-dev \
- && rm -rf /var/lib/apt/lists/*
- ENV USER=root
- ENV ROCKET_ADDRESS=0.0.0.0
- ENV ROCKET_ENV=development
- WORKDIR /code
- RUN cargo init
- COPY Cargo.toml /code/Cargo.toml
- RUN cargo fetch
- COPY . /code
- FROM base AS development
- EXPOSE 8000
- CMD [ "cargo", "run", "--offline" ]
- FROM base AS builder
- RUN cargo build --release --offline
- FROM debian:buster-slim
- ENV ROCKET_ENV=production
- EXPOSE 8000
- COPY --from=builder /code/target/release/react-rust-postgres /react-rust-postgres
- CMD [ "/react-rust-postgres" ]
|