blob: d9c6af6b49615b0f4067529317a5cef99efc5cfb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# build stage
FROM rust:latest as cargo-build
WORKDIR /usr/src/verden
COPY . .
ARG DATABASE_URL="postgres://user:password@localhost:5432/verden"
RUN cargo install --path . && cargo install sqlx-cli
EXPOSE 9090
CMD ["verden"]
|