Browse Source

Set Dockerfile node version

CareyWong 4 years ago
parent
commit
bd6d078a24
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Dockerfile

+ 1 - 1
Dockerfile

@@ -1,5 +1,5 @@
 # ---- Dependencies ----
-FROM node:lts-alpine AS dependencies
+FROM node:12-alpine AS dependencies
 WORKDIR /app
 COPY package.json ./
 RUN yarn install