Skip to content

Commit

Permalink
fix: use node image as base to ensure version range (#51)
Browse files Browse the repository at this point in the history
  • Loading branch information
smoya authored Feb 14, 2022
1 parent a21f07d commit 1b4f10f
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
# ---- Base Alpine with installed Node ----
FROM alpine:3.14.3 AS base
FROM node:14-alpine3.14 AS base

# install node
RUN apk add --update \
nodejs=14.18.1-r0 \
npm=7.17.0-r0 \
nghttp2

# ---- Install dependencies ----
Expand Down

0 comments on commit 1b4f10f

Please sign in to comment.