You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
468 B
Docker
29 lines
468 B
Docker
5 years ago
|
FROM jdrouet/rust-nightly:buster-slim AS base
|
||
|
|
||
|
ENV USER=root
|
||
|
ENV ROCKET_ADDRESS=0.0.0.0
|
||
|
|
||
|
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
|
||
|
|
||
|
EXPOSE 8000
|
||
|
|
||
|
COPY --from=builder /code/target/release/react-rust-postgres /react-rust-postgres
|
||
|
|
||
|
CMD [ "/react-rust-postgres" ]
|