2021-06-29 13:48:10 +00:00
|
|
|
# The below image is created out of the Dockerfile.base
|
|
|
|
# It has the dependencies already installed so that codespace will boot up fast
|
2021-07-06 15:51:40 +00:00
|
|
|
FROM ghcr.io/chatwoot/chatwoot_codespace:latest
|
2020-12-09 11:31:28 +00:00
|
|
|
|
|
|
|
# Do the set up required for chatwoot app
|
|
|
|
WORKDIR /workspace
|
|
|
|
COPY . /workspace
|
2021-07-06 15:51:40 +00:00
|
|
|
RUN yarn && gem install bundler && bundle install
|