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

9 lines
154 B
Docker
Raw Normal View History

2020-04-29 21:20:54 +00:00
FROM ghost
2020-04-29 22:37:57 +00:00
# USER root
RUN apt-get update
RUN apt-get install -y gettext
2020-04-29 21:20:54 +00:00
COPY config.production.json /var/lib/ghost/
COPY run.sh /
2020-04-29 23:34:59 +00:00
CMD ["sh", "/run.sh"]