Difference between revisions of "Gitfs"
Jump to navigation
Jump to search
(Created page with "https://www.presslabs.com/docs/code/gitfs/usage/#user-content-directory-structure") |
|||
(3 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
https://www.presslabs.com/docs/code/gitfs/usage/#user-content-directory-structure | https://www.presslabs.com/docs/code/gitfs/usage/#user-content-directory-structure | ||
+ | |||
+ | ``` | ||
+ | RUN set -eux && \ | ||
+ | apt-get -y update && \ | ||
+ | DEBIAN_FRONTEND=noninteractive apt-get -y --no-install-recommends install \ | ||
+ | python3 \ | ||
+ | python3-pip \ | ||
+ | python3-dev \ | ||
+ | libffi-dev \ | ||
+ | libgit2-dev \ | ||
+ | # build-essential \ | ||
+ | # libssh2-1-dev | ||
+ | gcc | ||
+ | |||
+ | |||
+ | RUN pip3 install --no-cache-dir gitfs | ||
+ | RUN mkdir -p /var/lib/gitfs | ||
+ | ``` |
Latest revision as of 01:12, 30 July 2021
https://www.presslabs.com/docs/code/gitfs/usage/#user-content-directory-structure
RUN set -eux && \ apt-get -y update && \ DEBIAN_FRONTEND=noninteractive apt-get -y --no-install-recommends install \ python3 \ python3-pip \ python3-dev \ libffi-dev \ libgit2-dev \ # build-essential \ # libssh2-1-dev gcc RUN pip3 install --no-cache-dir gitfs RUN mkdir -p /var/lib/gitfs