1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-11-27 08:21:03 +02:00

Server: Switch to node:16-bullseye base image (#5202)

This uses newer libs which are needed to build some of the dependencies which are not available pre-built on non-amd64 architectures.

Also to instal sqlite from source python seems to be needed.
This commit is contained in:
Piotr Banasik 2021-08-23 01:51:26 -07:00 committed by GitHub
parent 4ba417a2f4
commit 9b2094f688
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,11 @@
# https://versatile.nl/blog/deploying-lerna-web-apps-with-docker
FROM node:16
FROM node:16-bullseye
RUN apt-get update \
&& apt-get install -y \
python \
&& rm -rf /var/lib/apt/lists/*
RUN echo "Node: $(node --version)"
RUN echo "Npm: $(npm --version)"