diff --git a/Dockerfile b/Dockerfile index c5a286e..b65f937 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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