aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
blob: c4af1aefabf940d9b3f277c21bdc6ff04c2c3b1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
FROM rust:1.86.0-alpine AS builder
RUN apk add pkgconfig openssl musl-dev libressl-dev
COPY . /app
WORKDIR /app
RUN cargo update
RUN cargo b -r

FROM alpine:3.20.3
RUN mkdir /app
COPY --from=builder /app/target/release/orange-whale /app
WORKDIR /app
ENTRYPOINT ["./orange-whale"]