We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 95df99e commit 185411bCopy full SHA for 185411b
.gitignore
@@ -1,3 +1,10 @@
1
+# IDE
2
+.idea
3
+.vscode
4
+
5
+# Mac OS
6
+.DS_Store
7
8
# Logs
9
logs
10
*.log
Dockerfile
@@ -0,0 +1,15 @@
+# Setting the base to nodejs 8.0.0
+FROM node:8.0.0-slim
+# Maintainer
+MAINTAINER Geir Gåsodden
+# Adds backports
+RUN awk '$1 ~ "^deb" { $3 = $3 "-backports"; print; exit }' /etc/apt/sources.list > /etc/apt/sources.list.d/backports.list
+# Installs git and unoconv
11
+RUN apt-get update
12
13
+RUN DEBIAN_FRONTEND=noninteractive apt-get -t jessie-backports install -y git unoconv && apt-get clean
14
15
+ENTRYPOINT /usr/bin/unoconv --listener --server=0.0.0.0 --port=2002
0 commit comments