baalajimaestro
b98bcf09f2
Rust binaries are soft-locking when workdir is set to / Signed-off-by: baalajimaestro <me@baalajimaestro.me>
17 lines
364 B
Docker
17 lines
364 B
Docker
FROM rust:bullseye as builder
|
|
|
|
RUN mkdir /app
|
|
WORKDIR /app
|
|
|
|
COPY Cargo.toml /app
|
|
COPY Cargo.lock /app
|
|
COPY src /app/src
|
|
COPY templates /app/templates
|
|
RUN cargo build --release
|
|
|
|
FROM gcr.io/distroless/cc:latest
|
|
WORKDIR /app
|
|
COPY --from=builder /app/target/release/paste-frontend /app/paste-frontend
|
|
ADD templates /app/templates
|
|
EXPOSE 8080
|
|
CMD ["./paste-frontend"]
|