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 9d7eb2b commit 5753990
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 @@ -7,7 +7,7 @@

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

FROM node as redoc
FROM node:lts-alpine as redoc

RUN npm install -g redoc
RUN npm install -g redoc-cli
Expand Down
2 changes: 1 addition & 1 deletion docker/grid-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-alpine

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

0 comments on commit 5753990

Please sign in to comment.