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