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.
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:06:04 +00:00
|
|
|
COPY post.hbs /var/lib/ghost/content/themes/casper/
|
2020-04-30 23:24:13 +00:00
|
|
|
COPY run.sh /
|
|
|
|
CMD ["sh", "/run.sh"]
|