-
Notifications
You must be signed in to change notification settings - Fork 139
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Pinned and updated dependency versions (#2683)
(cherry picked from commit d21c8bb)
- Loading branch information
1 parent
9d5763a
commit c83c1f3
Showing
3 changed files
with
64 additions
and
64 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 |
---|---|---|
@@ -1,11 +1,11 @@ | ||
# Build the source | ||
FROM node:14-alpine as builder | ||
FROM docker.io/library/node:18.14.1-alpine@sha256:045b1a1c90bdfd8fcaad0769922aa16c401e31867d8bf5833365b0874884bbae as builder | ||
|
||
WORKDIR /code | ||
|
||
# First install dependencies. This part will be cached as long as | ||
# the package(-lock).json files remain identical. | ||
COPY package*.json /code/ | ||
# the package.json file remains identical. | ||
COPY package.json /code/ | ||
RUN npm install | ||
|
||
# Build code | ||
|
@@ -26,7 +26,7 @@ RUN find . -type f "(" \ | |
| xargs -0 -n 1 gzip -kf | ||
|
||
# Production Nginx image | ||
FROM nginxinc/nginx-unprivileged:1.23.0-alpine | ||
FROM docker.io/nginxinc/nginx-unprivileged:1.23.3-alpine@sha256:c748ba587e7436aaa8729b64d4e0412410a486f0c592f0eec100fb3804ff9afd | ||
|
||
LABEL org.opencontainers.image.title="OHDSI-Atlas" | ||
LABEL org.opencontainers.image.authors="Joris Borgdorff <[email protected]>, Lee Evans - www.ltscomputingllc.com" | ||
|
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