From 9181b3a021acc7585cb6f9f20da6accfce0015e0 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Sat, 31 Jul 2021 10:16:38 +0300 Subject: merge my_repos.py to the config The config is also in the TOML format now. It's a bit messy for the moment, but I'll fix it. --- Dockerfile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'Dockerfile') diff --git a/Dockerfile b/Dockerfile index b314d0f..5378dd1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,12 +1,17 @@ FROM alpine:3.13 -RUN apk add --no-cache bash git openssh-client python3 tini +RUN build_deps='gcc libffi-dev make musl-dev python3-dev py3-pip' && \ + runtime_deps='bash git openssh-client python3 tini' && \ + apk add --no-cache $build_deps $runtime_deps ARG ssh_sock_dir=/var/run/cgitize ARG ssh_sock_path="$ssh_sock_dir/ssh-agent.sock" ENV SSH_AUTH_SOCK "$ssh_sock_path" +COPY ["requirements.txt", "/tmp/"] +RUN pip3 install -r /tmp/requirements.txt + COPY ["docker/entrypoint.sh", "/"] COPY ["cgitize/", "/usr/src/cgitize/"] WORKDIR /usr/src -- cgit v1.2.3