mirror of
https://github.com/chatwoot/chatwoot.git
synced 2026-06-13 21:01:16 +08:00
9 lines
315 B
Docker
9 lines
315 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
|