fix(core): update

This commit is contained in:
Philipp Kunz 2020-05-27 23:10:48 +00:00
parent 25849cd990
commit b9070b3a35
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@ LABEL author="Lossless GmbH <hello@lossless.com>"
WORKDIR /workspace
# important environment variables
ENV NODE_VERSION_LTS="10.16.3" NODE_VERSION_STABLE="12.8.1" NVM_DIR="/usr/local/nvm"
ENV NODE_VERSION_LTS="14.3.0" NODE_VERSION_STABLE="14.3.0" NVM_DIR="/usr/local/nvm"
# Set debconf to run non-interactively and install packages
RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections \

View File

@ -1,4 +1,4 @@
FROM node:12.8.1-alpine
FROM node:14.3.0-alpine
LABEL author="Lossless GmbH <hello@lossless.com>"
RUN apk update && apk add bash libc6-compat
ENV NODE_OPTIONS="--max_old_space_size=1000"