Commit 3f889d3d authored by Konrad Mohrfeldt's avatar Konrad Mohrfeldt
Browse files

use node:lts-alpine image for build jobs

node:alpine seems a little unstable for our purposes, so we stay with
LTS releases to be sure.
parent 5def3c39
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
# stage-1: build dist folder
FROM node:alpine as build
FROM node:lts-alpine as build
WORKDIR /usr/src/app
COPY ["package.json", "package-lock.json", "/usr/src/app/"]
RUN apk add python make g++