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

16 lines
273 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
2024-10-09 18:55:23 -05:00
ENV NX_REJECT_UNKNOWN_LOCAL_CACHE=0
2024-10-09 09:36:53 -05:00
EXPOSE 2368
EXPOSE 4200
ENTRYPOINT ["./docker-local-entrypoint.sh"]
2024-10-09 17:45:25 -05:00
CMD ["yarn", "docker:dev:entry"]