Bump node to 15.14 + add .nvmrc

small-fixes
Dennis Boldt 2021-04-29 21:43:40 +02:00
parent a00189d56a
commit 4f5177a5fc
4 changed files with 6 additions and 3 deletions

1
.nvmrc Normal file
View File

@ -0,0 +1 @@
15.14

View File

@ -28,7 +28,9 @@ make sure to properly set up and secure your server yourself.
1. Create a user for running the application. It is not recommended to run as a
user that is also used for other things. Do not run as root!
2. Clone the repository.
3. Install `node` of at least version 14, and also `npm`.
3. Install `node` of at least version 15, and also `npm`. You can use the
[Node Version Manager (npm)](https://github.com/nvm-sh/nvm), since this project
contains a `.nvmrc`. Just run `nvm install` followed by `nvm use`.
4. Run `npm ci` in the `api` and `frontend` directories to install dependencies.
5. Install and configure a MongoDB somewhere.
6. Copy `api/config.json.example` to `api/config.json` and change it to suit

View File

@ -1,4 +1,4 @@
FROM node:15.11.0-buster
FROM node:15.14-buster
# Install python3, pip3, and make them the default for `python` and `pip` commands
RUN apt-get update && apt-get install -y python3 python3-pip

View File

@ -1,4 +1,4 @@
FROM node:14
FROM node:15.14-buster
WORKDIR /opt/obs/frontend
ADD package.json package-lock.json /opt/obs/frontend/