0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-06 22:40:14 -05:00
ghost/Dockerfile

15 lines
243 B
Text
Raw Normal View History

2024-10-09 09:36:53 -05:00
ARG NODE_VERSION=20.15.1
FROM node:$NODE_VERSION-bullseye
WORKDIR /home/ghost
COPY docker-local-entrypoint.sh .
ENV NX_DAEMON=true
EXPOSE 2368
EXPOSE 4200
ENTRYPOINT ["./docker-local-entrypoint.sh"]
CMD ["node", ".github/scripts/dev.js"]