From a06e888bdf25ce7b1feb2d1c165420edf4781082 Mon Sep 17 00:00:00 2001 From: Quentin Duchemin <quentinduchemin@tuta.io> Date: Sun, 8 Dec 2019 18:27:36 +0100 Subject: [PATCH] Bump to node 13 --- pica-oh-my-form/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pica-oh-my-form/Dockerfile b/pica-oh-my-form/Dockerfile index ffcb026a..be0d5c32 100644 --- a/pica-oh-my-form/Dockerfile +++ b/pica-oh-my-form/Dockerfile @@ -1,4 +1,4 @@ -FROM node:10-alpine +FROM node:13-alpine LABEL maintainer="quentinduchemin@tuta.io" ARG OHMYFORM_VERSION=0.2.3 @@ -9,7 +9,7 @@ RUN addgroup --gid 9999 ohmyform && adduser -D --uid 9999 -G ohmyform ohmyform RUN apk add --no-cache python=2.7.16-r1 \ && rm -rf /tmp/* \ && npm install --quiet -g grunt@1.0.4 bower@1.8.8 pm2@3.5.1 \ - && npm cache clean + && npm cache clean --force RUN wget -O omf.tar.gz https://github.com/ohmyform/ohmyform/archive/${OHMYFORM_VERSION}.tar.gz \ && tar --strip-components=1 -x -f omf.tar.gz -C /opt/app \ -- GitLab