Skip to content

Commit

Permalink
Change Dockerfiles to use Node LTS
Browse files Browse the repository at this point in the history
The node base image was recently updated causing builds to fail
during installation of redoc. Once the issue described at
Redocly/redoc#1442 is resolved, this
change should be reverted.

Signed-off-by: Ryan Beck-Buysse <[email protected]>
  • Loading branch information
rbuysse committed Oct 28, 2020
1 parent 98edc24 commit 88b2a08
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ci/website.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

# -------------=== redoc build ===-------------

FROM node as redoc
FROM node:lts-stretch as redoc

RUN npm install -g redoc
RUN npm install -g redoc-cli
Expand Down
2 changes: 1 addition & 1 deletion docker/splinter-docs-redoc
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

FROM node
FROM node:lts-stretch

RUN npm install -g redoc
RUN npm install -g redoc-cli

0 comments on commit 88b2a08

Please sign in to comment.