mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-06 22:40:14 -05:00
15 lines
273 B
Docker
15 lines
273 B
Docker
ARG NODE_VERSION=20.15.1
|
|
FROM node:$NODE_VERSION-bullseye
|
|
|
|
WORKDIR /home/ghost
|
|
|
|
COPY docker-local-entrypoint.sh .
|
|
|
|
ENV NX_DAEMON=true
|
|
ENV NX_REJECT_UNKNOWN_LOCAL_CACHE=0
|
|
|
|
EXPOSE 2368
|
|
EXPOSE 4200
|
|
|
|
ENTRYPOINT ["./docker-local-entrypoint.sh"]
|
|
CMD ["yarn", "docker:dev:entry"]
|