-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- fix: docker image linux/amd64 and linux/arm64 compatible (#70)
* - fix: docker image to work in arm64 * - fix: update docker image
- Loading branch information
1 parent
f9f1b79
commit 66d8692
Showing
2 changed files
with
3 additions
and
10 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,11 +1,4 @@ | ||
|
||
FROM denoland/deno:debian-2.1.1 | ||
RUN apt-get update && apt-get install -y curl | ||
|
||
# Install Google Chrome | ||
RUN curl -LO https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb | ||
RUN apt-get install -y ./google-chrome-stable_current_amd64.deb | ||
RUN rm google-chrome-stable_current_amd64.deb | ||
RUN apt-get install -y chromium | ||
|
||
ENV CHROME_PATH=/usr/bin/google-chrome | ||
RUN apt-get update && apt-get install -y chromium | ||
ENV CHROME_PATH=/usr/bin/chromium |
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