Adds basic container setup with pipeline #1

Merged
OCram85 merged 18 commits from woodpecker into master 2022-11-07 16:01:31 +01:00
1 changed files with 17 additions and 17 deletions
Showing only changes of commit 2a8a953f0d - Show all commits

View File

@ -14,21 +14,21 @@ RUN \
git config --system credential.helper store && \
echo 'source /usr/share/bash-completion/completions/git' >> /etc/bash.bashrc
RUN \
echo "**** install dev runtimes ****" && \
curl -fsSL https://deb.nodesource.com/setup_lts.x | sudo -E bash - && \
apt-get install --no-install-recommends -y \
nodejs \
golang-go
RUN \
echo "**** clean up ****" && \
apt-get clean && \
rm -rf \
/tmp/* \
/var/lib/apt/lists/* \
/var/tmp/*
#ADD finalize-codeserver.sh /usr/bin/
#RUN \
# chmod +x /usr/bin/finalize-codeserver.sh
# echo "**** install dev runtimes ****" && \
# curl -fsSL https://deb.nodesource.com/setup_lts.x | sudo -E bash - && \
# apt-get install --no-install-recommends -y \
# nodejs \
# golang-go
#RUN \
# echo "**** clean up ****" && \
# apt-get clean && \
# rm -rf \
# /tmp/* \
# /var/lib/apt/lists/* \
# /var/tmp/*
ADD finalize-codeserver.sh /usr/bin/
RUN \
chmod +x /usr/bin/finalize-codeserver.sh