blob: e41b39636a4cb754177c31cf73473ca909fa9153 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
FROM christophwurst/diesel-cli
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update -yqq && apt-get install -yqq postgresql postgresql-contrib
COPY migrations ./migrations
COPY setup_db.sh Cargo.toml ./
CMD ["./setup_db.sh"]
|