We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16a4589 commit 55467adCopy full SHA for 55467ad
Dockerfile
@@ -3,8 +3,10 @@ FROM node:15-alpine
3
WORKDIR /usr/src/app
4
COPY package*.json ./
5
6
+RUN yarn install
7
+COPY . .
8
+
9
RUN apk add --no-cache ffmpeg
-# COPY . .
10
11
EXPOSE 3000
-CMD [ "nodemon", "start" ]
12
+CMD [ "yarn", "start" ]
package.json
@@ -1,11 +1,14 @@
1
{
2
"name": "ffmpeg-queue",
- "version": "0.1.0",
+ "version": "0.1.1",
"description": "FIFO queue server for FFmpeg, used for uwutube",
"main": "app.js",
"repository": "https://github.com/uwutube/ffmpeg-queue",
"author": "xezno",
"license": "AGPL-3.0",
+ "scripts": {
+ "start": "node app.js"
+ },
"dependencies": {
13
"fastify": "^3.9.2",
14
"fastify-multipart": "^3.3.1",
0 commit comments