24
1
Fork 0

Merge branch 'node-16' into 'master'

Bump node to latest LTS v16.13

See merge request timvisee/send!20
This commit is contained in:
Tim Visée 2021-12-01 18:00:21 +00:00
commit 97b0b10863
3 changed files with 4 additions and 6 deletions

View File

@ -6,8 +6,7 @@
# Build project
FROM node:current-alpine AS builder
ENV NODE_OPTIONS=--openssl-legacy-provider
FROM node:16.13-alpine3.13 AS builder
RUN set -x \
# Add user
&& addgroup --gid 10001 app \
@ -27,8 +26,7 @@ RUN set -x \
# Main image
FROM node:current-alpine
ENV NODE_OPTIONS=--openssl-legacy-provider
FROM node:16.13-alpine3.13
RUN set -x \
# Add user
&& addgroup --gid 10001 app \

View File

@ -81,7 +81,7 @@ A file sharing experiment which allows you to send encrypted files to other user
## Requirements
- [Node.js 15.x](https://nodejs.org/)
- [Node.js 16.x](https://nodejs.org/)
- [Redis server](https://redis.io/) (optional for development)
- [AWS S3](https://aws.amazon.com/s3/) or compatible service (optional)

View File

@ -59,7 +59,7 @@
"cache": true
},
"engines": {
"node": "^15.5.1"
"node": "^16.13.0"
},
"devDependencies": {
"@babel/core": "^7.16.0",