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

16 lines
332 B
Docker
Raw Normal View History

2020-05-06 20:07:16 +00:00
FROM alpine/git as git
WORKDIR /themes
RUN git clone https://sigyl.com/git/themes/casper.git
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-06 20:07:16 +00:00
COPY --from=git /themes/ /var/lib/ghost/content/themes/
2020-05-04 20:41:11 +00:00
COPY post.hbs /hbs/
2020-04-30 23:24:13 +00:00
COPY run.sh /
CMD ["sh", "/run.sh"]