-
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.
- Loading branch information
1 parent
b6c45df
commit a784373
Showing
1 changed file
with
3 additions
and
3 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 |
---|---|---|
|
@@ -20,14 +20,14 @@ LABEL org.opencontainers.image.authors="Pivot!" \ | |
# Install chrome dependencies | ||
RUN yum -y install https://dl.google.com/linux/direct/google-chrome-stable_current_x86_64.rpm | ||
|
||
FROM ghcr.io/department-of-veterans-affairs/lighthouse-node-build:v2-node18 as nodebuild | ||
|
||
FROM devchromebase as devnodebase | ||
|
||
# | ||
# NodeJS 18.x | ||
# | ||
RUN curl -sL https://rpm.nodesource.com/setup_18.x | bash - | ||
RUN retry yum install -y -q nodejs gcc-c++ make python3 git \ | ||
&& retry yum install --assumeyes --quiet tar gzip xz zip unzip | ||
COPY --from=nodebuild /usr/local/ /usr/local/ | ||
RUN npm install -g [email protected] | ||
|
||
FROM devnodebase | ||
|