-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Install server package in the cli container to inlcude lerc
- Loading branch information
1 parent
99c1a75
commit 3325c77
Showing
2 changed files
with
2 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
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 |
---|---|---|
|
@@ -21,11 +21,12 @@ RUN npm install [email protected] | |
COPY ./basemaps-landing*.tgz /app/ | ||
COPY ./basemaps-cogify*.tgz /app/ | ||
COPY ./basemaps-smoke*.tgz /app/ | ||
COPY ./basemaps-server*.tgz /app/ | ||
|
||
# Copy the static files for v1/health check | ||
COPY ./static/ /app/static/ | ||
|
||
RUN npm install ./basemaps-landing*.tgz ./basemaps-cogify*.tgz ./basemaps-smoke*.tgz | ||
RUN npm install ./basemaps-landing*.tgz ./basemaps-cogify*.tgz ./basemaps-smoke*.tgz ./basemaps-server*.tgz | ||
|
||
COPY dist/index.cjs /app/ | ||
|
||
|