blob: 7aafc88f83d357856e3a2603f6affd3992d39cca (
plain)
1
2
3
4
5
6
7
8
|
FROM ubuntu:18.04
WORKDIR /app
RUN apt-get update && apt-get install -y libpq-dev gettext postgresql-client
ADD postgrest postgrest.conf start-postgrest.sh ./
ADD migrations ./migrations
CMD ["./start-postgrest.sh"]
|