ForestAdmin/lumber

View on GitHub
assets/database-examples/meals/Dockerfile

Summary

Maintainability
Test Coverage
FROM postgres:11-alpine
ENV POSTGRES_USER=lumber
ENV POSTGRES_PASSWORD=secret
ENV POSTGRES_DB=meals
RUN apk add --no-cache curl
RUN curl https://raw.githubusercontent.com/ForestAdmin/lumber/devel/assets/database-examples/meals/dump.sql -o /docker-entrypoint-initdb.d/dump.sql