From 097057d996e40965bbb5b870afd178ff95b12340 Mon Sep 17 00:00:00 2001 From: Marc-Antoine Date: Sun, 21 Apr 2019 21:45:04 +0200 Subject: [PATCH] Use full node image NPM for Github actions uses the full node image from docker. I need it because some of my dependencies need python and slim version does not seems to have it. More here: https://github.com/actions/npm/issues/8 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index b093b53..02d879b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ -FROM node:10-slim +FROM node:10 -LABEL version="1.0.0" +LABEL version="1.1.0" LABEL repository="https://github.com/Borales/actions-yarn" LABEL homepage="https://github.com/Borales/actions-yarn" LABEL maintainer="Oleksandr Bordun "