Browse Source

fix docker build

Benjamin Kornblum 7 months ago
parent
commit
882daffccd
1 changed files with 2 additions and 2 deletions
  1. 2 2
      Dockerfile

+ 2 - 2
Dockerfile

@@ -1,6 +1,6 @@
-FROM node:stable-alpine
+FROM node:lts-alpine
 # build stage
-FROM node:stable-alpine as build-stage
+FROM node:lts-alpine as build-stage
 WORKDIR /app
 COPY package*.json ./
 RUN npm install