Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
T
Transcoder
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
5
Issues
5
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
0
Merge Requests
0
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Test Cases
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Motion Bank
Services
Transcoder
Commits
0efb2e4c
Commit
0efb2e4c
authored
Jun 07, 2019
by
Anton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Switch to media-base-system image, remove default command
parent
8353d5a3
Pipeline
#12159
passed with stage
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
27 deletions
+1
-27
Dockerfile
Dockerfile
+1
-27
No files found.
Dockerfile
View file @
0efb2e4c
FROM
ubuntu:xenial
FROM
motionbank/media-base-system:latest
MAINTAINER
Motion Bank
# Install NodeJS 9
RUN
apt-get update
&&
apt-get
install
-y
curl build-essential
RUN
curl
-sL
https://deb.nodesource.com/setup_9.x | bash -
RUN
apt-get
install
-y
nodejs
RUN
npm i
-g
npm
# Install FFmpeg & Graphicsmagick
RUN
apt-get update
&&
apt-get
install
-y
software-properties-common
&&
add-apt-repository ppa:jonathonf/ffmpeg-4
RUN
apt-get update
&&
apt-get
install
-y
ffmpeg graphicsmagick
RUN
which ffmpeg
&&
which ffprobe
&&
which gm
RUN
ffmpeg
-version
&&
ffprobe
-version
# Install LTC tools
RUN
apt-get update
&&
apt-get
install
-y
git pkg-config libjack-dev libsndfile-dev libltc11 libltc-dev
RUN
git clone https://github.com/x42/ltc-tools.git
RUN
cd
ltc-tools
&&
make all
&&
make
install
&&
cd
..
&&
rm
-r
ltc-tools
# Cleanup
RUN
apt-get remove
-y
software-properties-common curl git pkg-config
&&
apt-get autoremove
-y
&&
apt-get clean
# Setup app
WORKDIR
/app
COPY
. .
RUN
rm
-rf
node_modules
RUN
npm
install
--production
EXPOSE
4040
CMD
["node", "src"]
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment