summaryrefslogtreecommitdiff
path: root/server/Dockerfile
blob: 0bc6f05378c738361d0ebe137c52aa0dbdaf218c (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 . .

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"]