-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from GeekStewie/GeekStewie-patch-1
Update Dockerfile
- Loading branch information
Showing
1 changed file
with
7 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |