diff options
author | Alex <alexta69@gmail.com> | 2022-01-26 00:20:30 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-26 00:20:30 +0200 |
commit | 47da14781b106217c9c646264ae9b39f903a04aa (patch) | |
tree | 6040d8fce6d92270d28fae9d8c4962220cf93f95 | |
parent | Merge pull request #106 from Erazor2/queuePersistence (diff) | |
download | metube-47da14781b106217c9c646264ae9b39f903a04aa.tar.gz metube-47da14781b106217c9c646264ae9b39f903a04aa.tar.bz2 metube-47da14781b106217c9c646264ae9b39f903a04aa.zip |
use LTS node version
-rw-r--r-- | Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,9 +1,9 @@ -FROM node as builder
+FROM node:lts-alpine as builder
WORKDIR /metube
COPY ui ./
RUN npm ci && \
- NODE_OPTIONS=--openssl-legacy-provider node_modules/.bin/ng build --prod
+ node_modules/.bin/ng build --prod
FROM python:3.8-alpine
|