aboutsummaryrefslogtreecommitdiffstats
path: root/postgrest/Dockerfile
blob: 5e6abac90810e59dcfe97f5a03be5532a44a2e07 (plain)
1
2
3
4
5
6
FROM ubuntu:18.04

WORKDIR /app
RUN apt-get update && apt-get install -y libpq-dev gettext
ADD postgrest postgrest.conf start-postgrest.sh ./
CMD ["./start-postgrest.sh"]