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

10 lines
180 B
Docker

FROM ghost:3.14.0
# USER root
RUN apt-get update
RUN apt-get install -y gettext
COPY config.production.json /var/lib/ghost/
COPY post.hbs /hbs
COPY run.sh /
CMD ["sh", "/run.sh"]