mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-10 23:36:14 -05:00
15 lines
224 B
Text
15 lines
224 B
Text
|
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 ["yarn", "dev"]
|