This repository has been archived on 2020-08-11. You can view files and clone it, but cannot push or open issues or pull requests.
stack/ghost/Dockerfile

8 lines
153 B
Docker

FROM ghost
COPY config.production.json /var/lib/ghost/
COPY run.sh /
USER root
RUN apk update
RUN apk add gettext # enables envsubst
CMD ["sh" "run.sh"]