mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-02 12:08:01 +00:00
Fixed an issue where the codespace was not correctly booting up. Fixes #7609 Co-authored-by: Liam Ashdown <liam.ashdown@debbiesvillas.co.uk> Co-authored-by: Sojan <sojan@pepalo.com>
9 lines
314 B
Docker
9 lines
314 B
Docker
# The below image is created out of the Dockerfile.base
|
|
# It has the dependencies already installed so that codespace will boot up fast
|
|
FROM ghcr.io/chatwoot/chatwoot_codespace:latest
|
|
|
|
# Do the set up required for chatwoot app
|
|
WORKDIR /workspace
|
|
COPY . /workspace
|
|
RUN yarn && gem install bundler && bundle install
|