aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile13
1 files changed, 13 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000..f680993
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,13 @@
+FROM alpine:3.10
+
+RUN apk add --no-cache git openssh-client python3
+
+ARG ssh_sock_dir=/var/run/cgit-repos
+ARG ssh_sock_path="$ssh_sock_dir/ssh-agent.sock"
+
+ENV SSH_AUTH_SOCK "$ssh_sock_path"
+
+COPY ["pull/", "/usr/src/pull/"]
+WORKDIR /usr/src
+
+CMD ["python3", "-m", "pull.main"]