git for installing commits

This commit is contained in:
Jesse Bannon 2023-07-18 10:38:07 -07:00
parent ad58920a62
commit bf5a266a72
2 changed files with 4 additions and 0 deletions

View file

@ -8,6 +8,7 @@ RUN mkdir -p /config && \
apk update --no-cache && \ apk update --no-cache && \
apk upgrade --no-cache && \ apk upgrade --no-cache && \
apk add --no-cache --repository=http://dl-3.alpinelinux.org/alpine/edge/main/ \ apk add --no-cache --repository=http://dl-3.alpinelinux.org/alpine/edge/main/ \
git \
vim \ vim \
g++ \ g++ \
nano \ nano \
@ -37,6 +38,7 @@ RUN mkdir -p /config && \
# Delete unneeded packages after install # Delete unneeded packages after install
rm ytdl_sub-*.whl && \ rm ytdl_sub-*.whl && \
apk del \ apk del \
git \
g++ \ g++ \
make \ make \
py3-pip \ py3-pip \

View file

@ -19,6 +19,7 @@ RUN mkdir -p /config && \
apt-get -y update && \ apt-get -y update && \
apt-get -y upgrade && \ apt-get -y upgrade && \
apt-get install --no-install-recommends -y \ apt-get install --no-install-recommends -y \
git \
vim \ vim \
g++ \ g++ \
nano \ nano \
@ -67,6 +68,7 @@ RUN mkdir -p /config && \
# Delete unneeded packages after install # Delete unneeded packages after install
rm ytdl_sub-*.whl && \ rm ytdl_sub-*.whl && \
apt-get remove -y \ apt-get remove -y \
git \
g++ \ g++ \
make \ make \
xz-utils \ xz-utils \