Skip to content

Commit

Permalink
Fix dockerfile (#54)
Browse files Browse the repository at this point in the history
* fix Dockerfile by enable Multiverse repository

* fix Dockerfile(change to debian command)

* bump version to 1.4.4

* fix Dockerfile
  • Loading branch information
EverettSummer authored Jul 9, 2023
1 parent 938c5f9 commit 45b5590
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
FROM node:17 AS base
RUN add-apt-repository multiverse && apt update && apt install -y mediainfo ffmpeg unrar
FROM node:18-bullseye AS base
RUN apt update
RUN apt install software-properties-common -y && apt-add-repository non-free && apt update
RUN apt install -y mediainfo ffmpeg unrar
WORKDIR /app

FROM base AS dev
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mira-video-manager",
"version": "1.4.3",
"version": "1.4.4",
"description": "Video Process for mira project",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit 45b5590

Please sign in to comment.