Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
FROM node:16.15.1-alpine
RUN apk add --no-cache ffmpeg

# Install OS dependencies
RUN apk add --no-cache ffmpeg
# Install git for reporting commit_hash
RUN apk --no-cache add git
COPY .git/* ./.git/

# Create app directory
WORKDIR /home/github/app
Expand Down