From 60c54db0480ca9a7257383bbc30385957a54d8f6 Mon Sep 17 00:00:00 2001 From: garciadeblas Date: Mon, 28 Oct 2019 13:34:15 +0100 Subject: [PATCH] Dockerfile: update to use Ubuntu bionic instead of alpine; fixes issue with Jenkins Change-Id: Ie1f040f83924e767a842b06851cc8d923afb58c8 Signed-off-by: garciadeblas --- Dockerfile | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index bc6676d..b740f2a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,12 +15,9 @@ # This Dockerfile is intented for devops and deb package generation -FROM alpine:latest +FROM ubuntu:18.04 -RUN apk update -RUN apk add bash -RUN apk add nodejs -RUN apk add nodejs-npm +RUN apt-get update && apt-get install -y build-essential nodejs npm RUN npm install -g swagger-cli RUN npm install -g speccy -- 2.25.1