0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-20 22:42:53 -05:00
ghost/Dockerfile

16 lines
273 B
Text
Raw Permalink Normal View History

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