mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-01 19:48:08 +00:00
- Fix pnpm path in rails - Fix memory issue during vite build Fixes https://github.com/chatwoot/chatwoot/issues/10356
9 lines
204 B
Docker
9 lines
204 B
Docker
FROM chatwoot:development
|
|
|
|
ENV PNPM_HOME="/root/.local/share/pnpm"
|
|
ENV PATH="$PNPM_HOME:$PATH"
|
|
|
|
RUN chmod +x docker/entrypoints/rails.sh
|
|
|
|
EXPOSE 3000
|
|
CMD ["rails", "server", "-b", "0.0.0.0", "-p", "3000"] |