This website works better with JavaScript.
Home
Explore
Help
Sign In
jrtechs
/
jrtechs-HomeBrewPlex
mirror of
https://github.com/jrtechs/HomeBrewPlex.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
1
Wiki
Activity
Browse Source
Created docker file for project
master
jrtechs
3 years ago
parent
91e4e6afde
commit
828b7b15e5
1 changed files
with
24 additions
and
0 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+24
-0
Dockerfile
+ 24
- 0
Dockerfile
View File
@ -0,0 +1,24 @@
# jeffery russell 12-19-2020
FROM
node:buster-slim
WORKDIR
/src/
COPY
package.json package.json
RUN
ls -la
# installs pandoc
RUN
apt-get update
&&
\
apt-get install ffmpeg -y
# installs node dependencies
RUN
npm install
# exposes port application runs on
EXPOSE
4000
# launch command
CMD
npm start
Write
Preview
Loading…
Cancel
Save