Explorar el Código

fix docker build

Benjamin Kornblum hace 7 meses
padre
commit
882daffccd
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  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