Skip to content

Commit

Permalink
Fix cci path
Browse files Browse the repository at this point in the history
  • Loading branch information
jlantz committed Nov 14, 2024
1 parent 57fc34c commit 07a2881
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -62,15 +62,17 @@ RUN useradd -r -m -s /bin/bash -c "D2X User" d2x
RUN echo 'export PATH=~/.local/bin:$PATH' >> /root/.bashrc && \
echo 'export PATH=~/.local/bin:$PATH' >> /home/d2x/.bashrc && \
echo '/usr/local/bin/devhub.sh' >> /root/.bashrc && \
echo '/usr/local/bin/devhub.sh' >> /home/d2x/.bashrc
echo '/usr/local/bin/devhub.sh' >> /home/d2x/.bashrc && \
export PATH="/root/.local/bin:$PATH"

# ========================
# Browser Support Stage
# ========================
FROM base AS browser

# Install Playwright and its dependencies
RUN cci robot install_playwright && \
RUN export PATH="/root/.local/bin:$PATH" && \
/root/.local/bin/cci robot install_playwright && \
npx playwright install-deps

# ========================
Expand Down

0 comments on commit 07a2881

Please sign in to comment.