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
Raw Normal View History

2020-04-30 23:47:07 +00:00
FROM ghost:3.14.0
2020-04-30 23:24:13 +00:00
# USER root
RUN apt-get update
RUN apt-get install -y gettext
COPY config.production.json /var/lib/ghost/
2020-05-04 20:20:33 +00:00
COPY post.hbs /hbs
2020-04-30 23:24:13 +00:00
COPY run.sh /
CMD ["sh", "/run.sh"]