-
Notifications
You must be signed in to change notification settings - Fork 1
/
Dockerfile
41 lines (29 loc) · 928 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# syntax=docker/dockerfile:1
######### Build Stage
ARG RUST_VERSION=1.74.0
ARG APP_NAME=new-api-rs
FROM rust:${RUST_VERSION}-slim-bookworm AS build
ARG APP_NAME
WORKDIR /app
RUN apt update
RUN apt install -y pkg-config libssl-dev gcc make perl
RUN --mount=type=bind,source=api,target=api \
--mount=type=bind,source=traits,target=traits \
--mount=type=bind,source=oauth,target=oauth \
--mount=type=bind,source=Cargo.toml,target=Cargo.toml \
--mount=type=bind,source=Cargo.lock,target=Cargo.lock \
--mount=type=cache,target=/app/target/ \
--mount=type=cache,target=/usr/local/cargo/registry/ \
<<EOF
set -e
cargo build --locked --release
cp ./target/release/$APP_NAME /bin/server
EOF
######### Run Stage
FROM debian:bookworm-slim AS final
RUN apt-get update
RUN apt-get install -y ca-certificates libssl-dev
WORKDIR /home
COPY --from=build /bin/server /bin/
EXPOSE 8080
CMD ["/bin/server"]