[mirotalk] - Update Dockerfile and CI

This commit is contained in:
Miroslav Pejic
2025-01-24 11:28:03 +01:00
parent dcec1d200f
commit 5f7689e3eb
5 changed files with 8 additions and 8 deletions
+3 -3
View File
@@ -7,7 +7,7 @@ on:
jobs:
test:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04 # LTS
steps:
- name: Checkout
uses: actions/checkout@v3
@@ -15,7 +15,7 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '22.13.0' # LTS
node-version: '22.x' # LTS
- name: Install dependencies
run: npm install
@@ -24,7 +24,7 @@ jobs:
run: npm test
build:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04 # LTS
needs: test # This ensures the build job only runs if the test job succeeds
steps:
- name: Checkout
+1 -1
View File
@@ -1,5 +1,5 @@
# Use a lightweight Node.js image https://hub.docker.com/_/node
FROM node:lts-alpine
FROM node:22-alpine
# Set working directory
WORKDIR /src
+1 -1
View File
@@ -39,7 +39,7 @@ dependencies: {
* @license For commercial use or closed source, contact us at license.mirotalk@gmail.com or purchase directly from CodeCanyon
* @license CodeCanyon: https://codecanyon.net/item/mirotalk-p2p-webrtc-realtime-video-conferences/38376661
* @author Miroslav Pejic - miroslav.pejic.85@gmail.com
* @version 1.4.60
* @version 1.4.61
*
*/
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "mirotalk",
"version": "1.4.60",
"version": "1.4.61",
"description": "A free WebRTC browser-based video call",
"main": "server.js",
"scripts": {
+2 -2
View File
@@ -15,7 +15,7 @@
* @license For commercial use or closed source, contact us at license.mirotalk@gmail.com or purchase directly from CodeCanyon
* @license CodeCanyon: https://codecanyon.net/item/mirotalk-p2p-webrtc-realtime-video-conferences/38376661
* @author Miroslav Pejic - miroslav.pejic.85@gmail.com
* @version 1.4.60
* @version 1.4.61
*
*/
@@ -11039,7 +11039,7 @@ function showAbout() {
Swal.fire({
background: swBg,
position: 'center',
title: '<strong>WebRTC P2P v1.4.60</strong>',
title: '<strong>WebRTC P2P v1.4.61</strong>',
imageAlt: 'mirotalk-about',
imageUrl: images.about,
customClass: { image: 'img-about' },