2022-02-17 23:35:37 -05:00
|
|
|
# This file is a template, and might need editing before it works on your project.
|
|
|
|
FROM rust:1.58 as builder
|
|
|
|
|
2022-02-18 12:37:30 -05:00
|
|
|
WORKDIR /usr/src/bannana-pho
|
2022-02-17 23:35:37 -05:00
|
|
|
|
|
|
|
COPY . .
|
|
|
|
RUN cargo build --release
|
|
|
|
|
|
|
|
FROM debian:buster-slim
|
|
|
|
|
2022-02-18 12:37:30 -05:00
|
|
|
COPY --from=builder /usr/src/bannana-pho/target/release/bannana-pho .
|
2022-02-17 23:35:37 -05:00
|
|
|
|
|
|
|
EXPOSE 3621
|
2022-02-18 12:37:30 -05:00
|
|
|
CMD ["./bannana-pho"]
|