Skip to content

Commit

Permalink
Merge pull request #1 from GeekStewie/GeekStewie-patch-1
Browse files Browse the repository at this point in the history
Update Dockerfile
  • Loading branch information
GeekStewie authored Oct 23, 2024
2 parents 00057e1 + 2d3d66f commit 8d1070c
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
FROM salesforce/cli:latest-full

# INSTALL DEPENDENCIES
RUN apt-get update && apt-get install --assume-yes openjdk-17-jdk-headless jq git python3-venv python3-pip
RUN apt-get update && apt-get install --assume-yes openjdk-17-jdk-headless jq git python3-venv python3-pip pipx python3-testresources
RUN apt-get autoremove --assume-yes \
&& apt-get clean --assume-yes \
&& rm -rf /var/lib/apt/lists/*

# INSTALL CUMULUSCI
RUN python3 -m pip install --upgrade pip
RUN pip install pipx
RUN pipx ensurepath
RUN pipx install cumulusci
#RUN cci robot install_playwright
RUN pip install cumulusci

# INSTALL PLAYWRIGHT
RUN npx --yes playwright install-deps
RUN cci robot install_playwright
RUN rfbrowser init

0 comments on commit 8d1070c

Please sign in to comment.