We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b7f67e commit 2e687aaCopy full SHA for 2e687aa
.dockerignore
@@ -0,0 +1 @@
1
+# Cannot dockerignore .git - giza insists on using git on the docs repo
Dockerfile
@@ -0,0 +1,15 @@
+FROM debian:9
2
+
3
+ENV DEBIAN_FRONTEND=noninteractive
4
5
+RUN apt-get update && \
6
+ apt-get -y install make git python-pip python3-pip \
7
+ ruby yard pkg-config libxml2-dev && \
8
+ python -m pip install giza && \
9
+ python3 -m pip install mut
10
11
+WORKDIR /app
12
13
+COPY . .
14
15
+ENTRYPOINT ["./entrypoint.sh"]
entrypoint.sh
@@ -0,0 +1,9 @@
+#!/bin/sh
+set -ex
+if test -n "$1"; then
+ exec "$@"
+else
+ make publish
+fi
0 commit comments