feat: Adding Docker CMD in all Dockerfiles (#7339)
* fix: adding cmd to dockerfiles * fix: adding cmd to live docker file
This commit is contained in:
parent
4f5272c8af
commit
f2a87e8f15
5 changed files with 12 additions and 4 deletions
|
|
@ -89,4 +89,6 @@ ENV NEXT_PUBLIC_WEB_BASE_URL=$NEXT_PUBLIC_WEB_BASE_URL
|
|||
ENV NEXT_TELEMETRY_DISABLED=1
|
||||
ENV TURBO_TELEMETRY_DISABLED=1
|
||||
|
||||
EXPOSE 3000
|
||||
EXPOSE 3000
|
||||
|
||||
CMD ["node", "apps/admin/server.js"]
|
||||
|
|
@ -52,3 +52,5 @@ COPY --from=installer /app/node_modules ./node_modules
|
|||
ENV TURBO_TELEMETRY_DISABLED=1
|
||||
|
||||
EXPOSE 3000
|
||||
|
||||
CMD ["node", "live/server.js"]
|
||||
|
|
@ -49,4 +49,4 @@ RUN chmod -R 777 /code
|
|||
# Expose container port and run entry point script
|
||||
EXPOSE 8000
|
||||
|
||||
|
||||
CMD ["./bin/docker-entrypoint-api.sh"]
|
||||
|
|
@ -89,4 +89,6 @@ ENV NEXT_PUBLIC_WEB_BASE_URL=$NEXT_PUBLIC_WEB_BASE_URL
|
|||
ENV NEXT_TELEMETRY_DISABLED=1
|
||||
ENV TURBO_TELEMETRY_DISABLED=1
|
||||
|
||||
EXPOSE 3000
|
||||
EXPOSE 3000
|
||||
|
||||
CMD ["node", "apps/space/server.js"]
|
||||
|
|
@ -106,4 +106,6 @@ ENV NEXT_PUBLIC_WEB_BASE_URL=$NEXT_PUBLIC_WEB_BASE_URL
|
|||
ENV NEXT_TELEMETRY_DISABLED=1
|
||||
ENV TURBO_TELEMETRY_DISABLED=1
|
||||
|
||||
EXPOSE 3000
|
||||
EXPOSE 3000
|
||||
|
||||
CMD ["node", "apps/web/server.js"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue