-
Notifications
You must be signed in to change notification settings - Fork 9
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 #1571 from weather-gov/mgwalker/1494-build-svg
Make it simpler to build CSS and sprites
- Loading branch information
Showing
4 changed files
with
54 additions
and
2 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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
FROM node:20 | ||
|
||
COPY zscaler-root.pem /etc/ssl/certs/zscaler-root.pem | ||
RUN c_rehash | ||
ENV NODE_EXTRA_CA_CERTS=/etc/ssl/certs/zscaler-root.pem | ||
|
||
RUN mkdir /app | ||
WORKDIR /app | ||
|
||
ADD ./web/themes/new_weather_theme/package.json . | ||
ADD ./web/themes/new_weather_theme/package-lock.json . | ||
|
||
RUN npm ci |
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
FROM node:20 | ||
|
||
COPY zscaler-root.pem /etc/ssl/certs/zscaler-root.pem | ||
RUN c_rehash | ||
ENV NODE_EXTRA_CA_CERTS=/etc/ssl/certs/zscaler-root.pem | ||
|
||
RUN mkdir /app | ||
WORKDIR /app | ||
|
||
ADD ./package.json . | ||
ADD ./package-lock.json . | ||
|
||
RUN npm ci |
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
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