diff --git a/.github/workflows/ci-master-pr.yml b/.github/workflows/ci-master-pr.yml index 6f5f5b18..c2d97b48 100644 --- a/.github/workflows/ci-master-pr.yml +++ b/.github/workflows/ci-master-pr.yml @@ -33,6 +33,260 @@ jobs: run: | git diff --exit-code + build-4-17-0: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: Display system info (linux) + run: | + set -e + hostname + whoami + cat /etc/*release + lscpu + free + df -h + pwd + docker info + docker version + + # See: https://github.com/docker/build-push-action/blob/v2.6.1/docs/advanced/cache.md#github-cache + - name: Set up QEMU + uses: docker/setup-qemu-action@v2 + + - name: Set up Docker Buildx + id: buildx + uses: docker/setup-buildx-action@v2 + + - name: Cache Docker layers + uses: actions/cache@v3 + with: + path: /tmp/.buildx-cache + key: ${{ runner.os }}-buildx-4.17.0-${{ github.sha }} + restore-keys: | + ${{ runner.os }}-buildx-4.17.0- + ${{ runner.os }}-buildx- + + - name: Login to Docker Hub registry + # Run on master and tags + if: github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/') + uses: docker/login-action@v2 + with: + username: ${{ secrets.DOCKERHUB_REGISTRY_USER }} + password: ${{ secrets.DOCKERHUB_REGISTRY_PASSWORD }} + + # This step generates the docker tags + - name: Prepare + id: prep-v4-17-0-alpine-3-15 + run: | + set -e + + # Get ref, i.e. from refs/heads/, or from refs/tags/. E.g. 'master' or 'v0.0.0' + REF=$( echo "${GITHUB_REF}" | rev | cut -d '/' -f 1 | rev ) + + # Get short commit hash E.g. 'abc0123' + SHA=$( echo "${GITHUB_SHA}" | cut -c1-7 ) + + # Generate docker image tags + # E.g. 'v0.0.0-' and 'v0.0.0-abc0123-' + # E.g. 'master-' and 'master-abc0123-' + VARIANT="v4.17.0-alpine-3.15" + REF_VARIANT="${REF}-${VARIANT}" + REF_SHA_VARIANT="${REF}-${SHA}-${VARIANT}" + + # Pass variables to next step + echo "VARIANT_BUILD_DIR=$VARIANT_BUILD_DIR" >> $GITHUB_OUTPUT + echo "VARIANT=$VARIANT" >> $GITHUB_OUTPUT + echo "REF_VARIANT=$REF_VARIANT" >> $GITHUB_OUTPUT + echo "REF_SHA_VARIANT=$REF_SHA_VARIANT" >> $GITHUB_OUTPUT + + - name: v4.17.0-alpine-3.15 - Build (PRs) + # Run only on pull requests + if: github.event_name == 'pull_request' + uses: docker/build-push-action@v3 + with: + context: variants/v4.17.0-alpine-3.15 + platforms: linux/amd64 + push: false + tags: | + ${{ github.repository }}:${{ steps.prep-v4-17-0-alpine-3-15.outputs.REF_VARIANT }} + ${{ github.repository }}:${{ steps.prep-v4-17-0-alpine-3-15.outputs.REF_SHA_VARIANT }} + cache-from: type=local,src=/tmp/.buildx-cache + cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max + + - name: v4.17.0-alpine-3.15 - Build and push (master) + # Run only on master + if: github.ref == 'refs/heads/master' + uses: docker/build-push-action@v3 + with: + context: variants/v4.17.0-alpine-3.15 + platforms: linux/amd64 + push: true + tags: | + ${{ github.repository }}:${{ steps.prep-v4-17-0-alpine-3-15.outputs.REF_VARIANT }} + ${{ github.repository }}:${{ steps.prep-v4-17-0-alpine-3-15.outputs.REF_SHA_VARIANT }} + cache-from: type=local,src=/tmp/.buildx-cache + cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max + + - name: v4.17.0-alpine-3.15 - Build and push (release) + if: startsWith(github.ref, 'refs/tags/') + uses: docker/build-push-action@v3 + with: + context: variants/v4.17.0-alpine-3.15 + platforms: linux/amd64 + push: true + tags: | + ${{ github.repository }}:${{ steps.prep-v4-17-0-alpine-3-15.outputs.VARIANT }} + ${{ github.repository }}:${{ steps.prep-v4-17-0-alpine-3-15.outputs.REF_VARIANT }} + ${{ github.repository }}:${{ steps.prep-v4-17-0-alpine-3-15.outputs.REF_SHA_VARIANT }} + ${{ github.repository }}:latest + cache-from: type=local,src=/tmp/.buildx-cache + cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max + + # This step generates the docker tags + - name: Prepare + id: prep-v4-17-0-docker-alpine-3-15 + run: | + set -e + + # Get ref, i.e. from refs/heads/, or from refs/tags/. E.g. 'master' or 'v0.0.0' + REF=$( echo "${GITHUB_REF}" | rev | cut -d '/' -f 1 | rev ) + + # Get short commit hash E.g. 'abc0123' + SHA=$( echo "${GITHUB_SHA}" | cut -c1-7 ) + + # Generate docker image tags + # E.g. 'v0.0.0-' and 'v0.0.0-abc0123-' + # E.g. 'master-' and 'master-abc0123-' + VARIANT="v4.17.0-docker-alpine-3.15" + REF_VARIANT="${REF}-${VARIANT}" + REF_SHA_VARIANT="${REF}-${SHA}-${VARIANT}" + + # Pass variables to next step + echo "VARIANT_BUILD_DIR=$VARIANT_BUILD_DIR" >> $GITHUB_OUTPUT + echo "VARIANT=$VARIANT" >> $GITHUB_OUTPUT + echo "REF_VARIANT=$REF_VARIANT" >> $GITHUB_OUTPUT + echo "REF_SHA_VARIANT=$REF_SHA_VARIANT" >> $GITHUB_OUTPUT + + - name: v4.17.0-docker-alpine-3.15 - Build (PRs) + # Run only on pull requests + if: github.event_name == 'pull_request' + uses: docker/build-push-action@v3 + with: + context: variants/v4.17.0-docker-alpine-3.15 + platforms: linux/amd64 + push: false + tags: | + ${{ github.repository }}:${{ steps.prep-v4-17-0-docker-alpine-3-15.outputs.REF_VARIANT }} + ${{ github.repository }}:${{ steps.prep-v4-17-0-docker-alpine-3-15.outputs.REF_SHA_VARIANT }} + cache-from: type=local,src=/tmp/.buildx-cache + cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max + + - name: v4.17.0-docker-alpine-3.15 - Build and push (master) + # Run only on master + if: github.ref == 'refs/heads/master' + uses: docker/build-push-action@v3 + with: + context: variants/v4.17.0-docker-alpine-3.15 + platforms: linux/amd64 + push: true + tags: | + ${{ github.repository }}:${{ steps.prep-v4-17-0-docker-alpine-3-15.outputs.REF_VARIANT }} + ${{ github.repository }}:${{ steps.prep-v4-17-0-docker-alpine-3-15.outputs.REF_SHA_VARIANT }} + cache-from: type=local,src=/tmp/.buildx-cache + cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max + + - name: v4.17.0-docker-alpine-3.15 - Build and push (release) + if: startsWith(github.ref, 'refs/tags/') + uses: docker/build-push-action@v3 + with: + context: variants/v4.17.0-docker-alpine-3.15 + platforms: linux/amd64 + push: true + tags: | + ${{ github.repository }}:${{ steps.prep-v4-17-0-docker-alpine-3-15.outputs.VARIANT }} + ${{ github.repository }}:${{ steps.prep-v4-17-0-docker-alpine-3-15.outputs.REF_VARIANT }} + ${{ github.repository }}:${{ steps.prep-v4-17-0-docker-alpine-3-15.outputs.REF_SHA_VARIANT }} + cache-from: type=local,src=/tmp/.buildx-cache + cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max + + # This step generates the docker tags + - name: Prepare + id: prep-v4-17-0-docker-rootless-alpine-3-15 + run: | + set -e + + # Get ref, i.e. from refs/heads/, or from refs/tags/. E.g. 'master' or 'v0.0.0' + REF=$( echo "${GITHUB_REF}" | rev | cut -d '/' -f 1 | rev ) + + # Get short commit hash E.g. 'abc0123' + SHA=$( echo "${GITHUB_SHA}" | cut -c1-7 ) + + # Generate docker image tags + # E.g. 'v0.0.0-' and 'v0.0.0-abc0123-' + # E.g. 'master-' and 'master-abc0123-' + VARIANT="v4.17.0-docker-rootless-alpine-3.15" + REF_VARIANT="${REF}-${VARIANT}" + REF_SHA_VARIANT="${REF}-${SHA}-${VARIANT}" + + # Pass variables to next step + echo "VARIANT_BUILD_DIR=$VARIANT_BUILD_DIR" >> $GITHUB_OUTPUT + echo "VARIANT=$VARIANT" >> $GITHUB_OUTPUT + echo "REF_VARIANT=$REF_VARIANT" >> $GITHUB_OUTPUT + echo "REF_SHA_VARIANT=$REF_SHA_VARIANT" >> $GITHUB_OUTPUT + + - name: v4.17.0-docker-rootless-alpine-3.15 - Build (PRs) + # Run only on pull requests + if: github.event_name == 'pull_request' + uses: docker/build-push-action@v3 + with: + context: variants/v4.17.0-docker-rootless-alpine-3.15 + platforms: linux/amd64 + push: false + tags: | + ${{ github.repository }}:${{ steps.prep-v4-17-0-docker-rootless-alpine-3-15.outputs.REF_VARIANT }} + ${{ github.repository }}:${{ steps.prep-v4-17-0-docker-rootless-alpine-3-15.outputs.REF_SHA_VARIANT }} + cache-from: type=local,src=/tmp/.buildx-cache + cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max + + - name: v4.17.0-docker-rootless-alpine-3.15 - Build and push (master) + # Run only on master + if: github.ref == 'refs/heads/master' + uses: docker/build-push-action@v3 + with: + context: variants/v4.17.0-docker-rootless-alpine-3.15 + platforms: linux/amd64 + push: true + tags: | + ${{ github.repository }}:${{ steps.prep-v4-17-0-docker-rootless-alpine-3-15.outputs.REF_VARIANT }} + ${{ github.repository }}:${{ steps.prep-v4-17-0-docker-rootless-alpine-3-15.outputs.REF_SHA_VARIANT }} + cache-from: type=local,src=/tmp/.buildx-cache + cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max + + - name: v4.17.0-docker-rootless-alpine-3.15 - Build and push (release) + if: startsWith(github.ref, 'refs/tags/') + uses: docker/build-push-action@v3 + with: + context: variants/v4.17.0-docker-rootless-alpine-3.15 + platforms: linux/amd64 + push: true + tags: | + ${{ github.repository }}:${{ steps.prep-v4-17-0-docker-rootless-alpine-3-15.outputs.VARIANT }} + ${{ github.repository }}:${{ steps.prep-v4-17-0-docker-rootless-alpine-3-15.outputs.REF_VARIANT }} + ${{ github.repository }}:${{ steps.prep-v4-17-0-docker-rootless-alpine-3-15.outputs.REF_SHA_VARIANT }} + cache-from: type=local,src=/tmp/.buildx-cache + cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max + + # Temp fix + # https://github.com/docker/build-push-action/issues/252 + # https://github.com/moby/buildkit/issues/1896 + - name: Move cache + run: | + rm -rf /tmp/.buildx-cache + mv /tmp/.buildx-cache-new /tmp/.buildx-cache + build-4-16-1: runs-on: ubuntu-latest steps: @@ -141,7 +395,6 @@ jobs: ${{ github.repository }}:${{ steps.prep-v4-16-1-alpine-3-15.outputs.VARIANT }} ${{ github.repository }}:${{ steps.prep-v4-16-1-alpine-3-15.outputs.REF_VARIANT }} ${{ github.repository }}:${{ steps.prep-v4-16-1-alpine-3-15.outputs.REF_SHA_VARIANT }} - ${{ github.repository }}:latest cache-from: type=local,src=/tmp/.buildx-cache cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max @@ -2953,6 +3206,7 @@ jobs: update-draft-release: needs: + - build-4-17-0 - build-4-16-1 - build-4-15-0 - build-4-14-1 @@ -2977,6 +3231,7 @@ jobs: publish-draft-release: needs: + - build-4-17-0 - build-4-16-1 - build-4-15-0 - build-4-14-1 @@ -3003,6 +3258,7 @@ jobs: update-dockerhub-description: needs: + - build-4-17-0 - build-4-16-1 - build-4-15-0 - build-4-14-1 diff --git a/README.md b/README.md index ab93358f..eb5fd246 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,10 @@ Dockerized [`code-server`](https://github.com/coder/code-server). | Tag | Dockerfile Build Context | |:-------:|:---------:| -| `:v4.16.1-alpine-3.15`, `:latest` | [View](variants/v4.16.1-alpine-3.15) | +| `:v4.17.0-alpine-3.15`, `:latest` | [View](variants/v4.17.0-alpine-3.15) | +| `:v4.17.0-docker-alpine-3.15` | [View](variants/v4.17.0-docker-alpine-3.15) | +| `:v4.17.0-docker-rootless-alpine-3.15` | [View](variants/v4.17.0-docker-rootless-alpine-3.15) | +| `:v4.16.1-alpine-3.15` | [View](variants/v4.16.1-alpine-3.15) | | `:v4.16.1-docker-alpine-3.15` | [View](variants/v4.16.1-docker-alpine-3.15) | | `:v4.16.1-docker-rootless-alpine-3.15` | [View](variants/v4.16.1-docker-rootless-alpine-3.15) | | `:v4.15.0-alpine-3.15` | [View](variants/v4.15.0-alpine-3.15) | @@ -46,7 +49,7 @@ Dockerized [`code-server`](https://github.com/coder/code-server). | `:v4.6.1-docker-alpine-3.15` | [View](variants/v4.6.1-docker-alpine-3.15) | | `:v4.6.1-docker-rootless-alpine-3.15` | [View](variants/v4.6.1-docker-rootless-alpine-3.15) | -Base variants include `npm 8` and `nodejs 16` (to run `code-server`), `pwsh`, and basic tools. E.g. `v4.16.1-alpine-3.15` +Base variants include `npm 8` and `nodejs 16` (to run `code-server`), `pwsh`, and basic tools. E.g. `v4.17.0-alpine-3.15` Incremental variants include additional tools and their `code` extensions: @@ -59,7 +62,7 @@ Incremental variants include additional tools and their `code` extensions: ### Base variant(s) ```sh -docker run --name code-server --rm -it -p 127.0.0.1:8080:8080 theohbrothers/docker-code-server:v4.16.1-alpine-3.15 +docker run --name code-server --rm -it -p 127.0.0.1:8080:8080 theohbrothers/docker-code-server:v4.17.0-alpine-3.15 # code-server is now available at http://127.0.0.1:8080. To login, use the password in the config file: --bind-addr=0.0.0.0:8080 --auth=none --disable-telemetry --disable-update-check docker exec code-server sh -c 'cat ~/.config/code-server/config.yaml' ``` @@ -67,13 +70,13 @@ docker exec code-server sh -c 'cat ~/.config/code-server/config.yaml' To disable password authentication, use `--auth=none`: ```sh -docker run --name code-server --rm -it -p 127.0.0.1:8080:8080 theohbrothers/docker-code-server:v4.16.1-alpine-3.15 --bind-addr=0.0.0.0:8080 --auth=none --disable-telemetry --disable-update-check +docker run --name code-server --rm -it -p 127.0.0.1:8080:8080 theohbrothers/docker-code-server:v4.17.0-alpine-3.15 --bind-addr=0.0.0.0:8080 --auth=none --disable-telemetry --disable-update-check ``` ### `docker` variant(s) ```sh -docker run --name code-server --rm -it --privileged -p 127.0.0.1:8080:8080 theohbrothers/docker-code-server:v4.16.1-docker-alpine-3.15 +docker run --name code-server --rm -it --privileged -p 127.0.0.1:8080:8080 theohbrothers/docker-code-server:v4.17.0-docker-alpine-3.15 # code-server is now available at http://127.0.0.1:8080. To login, use the password in the config file: docker exec code-server sh -c 'cat ~/.config/code-server/config.yaml' ``` @@ -81,7 +84,7 @@ docker exec code-server sh -c 'cat ~/.config/code-server/config.yaml' To disable password authentication, use `--auth=none`: ```sh -docker run --name code-server --rm -it -p 127.0.0.1:8080:8080 theohbrothers/docker-code-server:v4.16.1-docker-alpine-3.15 --bind-addr=0.0.0.0:8080 --auth=none --disable-telemetry --disable-update-check +docker run --name code-server --rm -it -p 127.0.0.1:8080:8080 theohbrothers/docker-code-server:v4.17.0-docker-alpine-3.15 --bind-addr=0.0.0.0:8080 --auth=none --disable-telemetry --disable-update-check ``` #### docker buildx @@ -109,7 +112,7 @@ docker buildx build ... ### `docker-rootless` variant(s) ```sh -docker run --name code-server --rm -it --privileged -p 127.0.0.1:8080:8080 theohbrothers/docker-code-server:v4.16.1-docker-rootless-alpine-3.15 +docker run --name code-server --rm -it --privileged -p 127.0.0.1:8080:8080 theohbrothers/docker-code-server:v4.17.0-docker-rootless-alpine-3.15 # code-server is now available at http://127.0.0.1:8080. To login, use the password in the config file: docker exec code-server sh -c 'cat ~/.config/code-server/config.yaml' ``` @@ -117,7 +120,7 @@ docker exec code-server sh -c 'cat ~/.config/code-server/config.yaml' To start code-server without password authentication, use `--auth=none`: ```sh -docker run --name code-server --rm -it -p 127.0.0.1:8080:8080 theohbrothers/docker-code-server:v4.16.1-docker-rootless-alpine-3.15 --bind-addr=0.0.0.0:8080 --auth=none --disable-telemetry --disable-update-check +docker run --name code-server --rm -it -p 127.0.0.1:8080:8080 theohbrothers/docker-code-server:v4.17.0-docker-rootless-alpine-3.15 --bind-addr=0.0.0.0:8080 --auth=none --disable-telemetry --disable-update-check ``` To build multi-arch images using `docker buildx`, see [here](#docker-buildx). diff --git a/generate/definitions/versions.json b/generate/definitions/versions.json index c0331789..038e90b6 100644 --- a/generate/definitions/versions.json +++ b/generate/definitions/versions.json @@ -1,6 +1,7 @@ { "code-server": { "versions": [ + "4.17.0", "4.16.1", "4.15.0", "4.14.1", diff --git a/variants/v4.17.0-alpine-3.15/Dockerfile b/variants/v4.17.0-alpine-3.15/Dockerfile new file mode 100644 index 00000000..5f28ece2 --- /dev/null +++ b/variants/v4.17.0-alpine-3.15/Dockerfile @@ -0,0 +1,133 @@ +# syntax=docker/dockerfile:1 +FROM alpine:3.15 +ARG TARGETPLATFORM +ARG TARGETOS +ARG TARGETARCH +ARG TARGETVARIANT +ARG BUILDPLATFORM +ARG BUILDOS +ARG BUILDARCH +ARG BUILDVARIANT +RUN set -eu; \ + echo "TARGETPLATFORM=$TARGETPLATFORM"; \ + echo "TARGETOS=$TARGETOS"; \ + echo "TARGETARCH=$TARGETARCH"; \ + echo "TARGETVARIANT=$TARGETVARIANT"; \ + echo "BUILDPLATFORM=$BUILDPLATFORM"; \ + echo "BUILDOS=$BUILDOS"; \ + echo "BUILDARCH=$BUILDARCH"; \ + echo "BUILDVARIANT=$BUILDVARIANT"; + +RUN --mount=type=secret,id=GITHUB_TOKEN \ + DEPS='alpine-sdk bash libstdc++ libc6-compat python3' \ + && apk add --no-cache $DEPS \ + # Constraint to npm 8, or else npm will fail with 'npm ERR! python is not a valid npm option'. See: https://stackoverflow.com/questions/74522956/python-is-not-a-valid-npm-option and https://jubianchi.github.io/semver-check/#/~8/8 + && apk add --no-cache 'npm~8' 'nodejs~16' \ + && npm config set python python3 \ + && GITHUB_TOKEN=$( cat /run/secrets/GITHUB_TOKEN ) npm install --global code-server@4.17.0 --unsafe-perm \ + # Fix missing dependencies. See: https://github.com/coder/code-server/issues/5530 + && cd /usr/local/lib/node_modules/code-server/lib/vscode && GITHUB_TOKEN=$( cat /run/secrets/GITHUB_TOKEN ) npm install --legacy-peer-deps \ + && code-server --version \ + && apk del $DEPS + +# Install tools +RUN apk add --no-cache bash bash-completion ca-certificates curl gnupg git git-lfs github-cli iotop jq less lsblk make nano openssh-client openssl p7zip rsync tree yq + +# Install pwsh +# See: https://learn.microsoft.com/en-us/powershell/scripting/install/install-alpine?view=powershell-7.3 +RUN apk add --no-cache \ + ca-certificates \ + less \ + ncurses-terminfo-base \ + krb5-libs \ + libgcc \ + libintl \ + libssl1.1 \ + libstdc++ \ + tzdata \ + userspace-rcu \ + zlib \ + icu-libs \ + curl +RUN apk -X https://dl-cdn.alpinelinux.org/alpine/edge/main add --no-cache lttng-ust +RUN mkdir -p /opt/microsoft/powershell/7 \ + && curl -sSL https://github.com/PowerShell/PowerShell/releases/download/v7.2.8/powershell-7.2.8-linux-alpine-x64.tar.gz | tar -C /opt/microsoft/powershell/7 -zxf - \ + && chmod +x /opt/microsoft/powershell/7/pwsh \ + && ln -s /opt/microsoft/powershell/7/pwsh /usr/bin/pwsh +# Disable telemetry for powershell 7.0.0 and above and .NET core: https://github.com/PowerShell/PowerShell/issues/16234#issuecomment-942139350 +ENV POWERSHELL_CLI_TELEMETRY_OPTOUT=1 +ENV POWERSHELL_TELEMETRY_OPTOUT=1 +ENV POWERSHELL_UPDATECHECK=Off +ENV POWERSHELL_UPDATECHECK_OPTOUT=1 +ENV DOTNET_CLI_TELEMETRY_OPTOUT=1 +ENV DOTNET_TELEMETRY_OPTOUT=1 +ENV COMPlus_EnableDiagnostics=0 +RUN pwsh -version +# Install pwsh module(s) +RUN pwsh -c 'Install-Module Pester -Force -Scope AllUsers -MinimumVersion 4.0.0 -MaximumVersion 4.10.1 -ErrorAction Stop' + +RUN apk add --no-cache sudo +RUN adduser -u 1000 --gecos '' -D user +RUN echo 'user ALL=(ALL) NOPASSWD:ALL' > /etc/sudoers.d/user + +# Install common extensions +USER user +# beautify - code formatter +RUN code-server --install-extension hookyqr.beautify@1.4.11 +# docker +RUN code-server --install-extension ms-azuretools.vscode-docker@1.18.0 +# firefox +RUN code-server --install-extension firefox-devtools.vscode-firefox-debug@2.9.1 +# git +RUN code-server --install-extension donjayamanne.githistory@0.6.19 +RUN code-server --install-extension eamodio.gitlens@11.6.0 +# github. Install the latest compatible version +RUN code-server --install-extension github.vscode-pull-request-github +# gitlab +RUN code-server --install-extension gitlab.gitlab-workflow@3.60.0 +# jinja +RUN code-server --install-extension samuelcolvin.jinjahtml@0.16.0 +RUN code-server --install-extension wholroyd.jinja@0.0.8 +# kubernetes +RUN code-server --install-extension ms-kubernetes-tools.vscode-kubernetes-tools@1.3.11 +# markdown +RUN code-server --install-extension bierner.markdown-preview-github-styles@0.1.6 +RUN code-server --install-extension DavidAnson.vscode-markdownlint@0.43.2 +# prettier - code formatter +RUN code-server --install-extension esbenp.prettier-vscode@9.0.0 +# pwsh +RUN code-server --install-extension ms-vscode.powershell@2021.12.0 +# svg +RUN code-server --install-extension jock.svg@1.4.17 +# terraform +RUN code-server --install-extension hashicorp.terraform@2.14.0 +# toml +RUN code-server --install-extension bungcip.better-toml@0.3.2 +# vscode +RUN code-server --install-extension vscode-icons-team.vscode-icons@11.13.0 +# xml +RUN code-server --install-extension redhat.vscode-xml@0.18.0 +# yaml +RUN code-server --install-extension redhat.vscode-yaml@1.9.1 + +# Add a default settings.json +USER user +COPY --chown=1000:1000 settings.json /home/user/.local/share/code-server/User/settings.json + +# Remove the default code-server config file created when extensions are installed +USER user +RUN rm -fv ~/.config/code-server/config.yaml + +# Symlink code to code-server +USER root +RUN ln -sfn /usr/local/bin/code-server /usr/local/bin/code + +USER root +COPY docker-entrypoint.sh /docker-entrypoint.sh +RUN chmod +x /docker-entrypoint.sh + +ENV LANG=en_US.UTF-8 +USER user +WORKDIR /home/user +ENTRYPOINT [ "/docker-entrypoint.sh" ] +CMD [ "--bind-addr=0.0.0.0:8080", "--disable-telemetry", "--disable-update-check" ] diff --git a/variants/v4.17.0-alpine-3.15/docker-entrypoint.sh b/variants/v4.17.0-alpine-3.15/docker-entrypoint.sh new file mode 100644 index 00000000..506f3566 --- /dev/null +++ b/variants/v4.17.0-alpine-3.15/docker-entrypoint.sh @@ -0,0 +1,13 @@ +#!/bin/sh +set -eu + +# See: https://github.com/docker-library/official-images#consistency +if [ "$#" -eq 0 ] || [ "${1#-}" != "$1" ]; then + set -- code-server "$@" +fi +if [ "$1" = 'code-server' ]; then + + echo "Starting code-server" + exec code-server "$@" +fi +exec "$@" diff --git a/variants/v4.17.0-alpine-3.15/settings.json b/variants/v4.17.0-alpine-3.15/settings.json new file mode 100644 index 00000000..2c0c4607 --- /dev/null +++ b/variants/v4.17.0-alpine-3.15/settings.json @@ -0,0 +1,24 @@ +{ + "extensions.autoCheckUpdates": false, + "extensions.autoUpdate": false, + "extensions.ignoreRecommendations": true, + "extensions.showRecommendationsOnlyOnDemand": true, + "npm.fetchOnlinePackageInfo": false, + "telemetry.enableTelemetry": false, + "telemetry.telemetryLevel": "off", + "typescript.check.npmIsInstalled": false, + "typescript.disableAutomaticTypeAcquisition": false, + "typescript.surveys.enabled": false, + "workbench.enableExperiments": false, + "workbench.iconTheme": "vscode-icons", + "workbench.settings.enableNaturalLanguageSearch": false, + "workbench.startupEditor": "none", + "workbench.welcomePage.walkthroughs.openOnInstall": false, + "workbench.tips.enabled": false, + + // Extension-specific + "gitlens.showWelcomeOnInstall": false, + "gitlens.showWhatsNewAfterUpgrades": false, + "redhat.telemetry.enabled": false, + "vsicons.dontShowNewVersionMessage": true, +} \ No newline at end of file diff --git a/variants/v4.17.0-docker-alpine-3.15/Dockerfile b/variants/v4.17.0-docker-alpine-3.15/Dockerfile new file mode 100644 index 00000000..d123fd7a --- /dev/null +++ b/variants/v4.17.0-docker-alpine-3.15/Dockerfile @@ -0,0 +1,314 @@ +# syntax=docker/dockerfile:1 +FROM alpine:3.15 +ARG TARGETPLATFORM +ARG TARGETOS +ARG TARGETARCH +ARG TARGETVARIANT +ARG BUILDPLATFORM +ARG BUILDOS +ARG BUILDARCH +ARG BUILDVARIANT +RUN set -eu; \ + echo "TARGETPLATFORM=$TARGETPLATFORM"; \ + echo "TARGETOS=$TARGETOS"; \ + echo "TARGETARCH=$TARGETARCH"; \ + echo "TARGETVARIANT=$TARGETVARIANT"; \ + echo "BUILDPLATFORM=$BUILDPLATFORM"; \ + echo "BUILDOS=$BUILDOS"; \ + echo "BUILDARCH=$BUILDARCH"; \ + echo "BUILDVARIANT=$BUILDVARIANT"; + +RUN --mount=type=secret,id=GITHUB_TOKEN \ + DEPS='alpine-sdk bash libstdc++ libc6-compat python3' \ + && apk add --no-cache $DEPS \ + # Constraint to npm 8, or else npm will fail with 'npm ERR! python is not a valid npm option'. See: https://stackoverflow.com/questions/74522956/python-is-not-a-valid-npm-option and https://jubianchi.github.io/semver-check/#/~8/8 + && apk add --no-cache 'npm~8' 'nodejs~16' \ + && npm config set python python3 \ + && GITHUB_TOKEN=$( cat /run/secrets/GITHUB_TOKEN ) npm install --global code-server@4.17.0 --unsafe-perm \ + # Fix missing dependencies. See: https://github.com/coder/code-server/issues/5530 + && cd /usr/local/lib/node_modules/code-server/lib/vscode && GITHUB_TOKEN=$( cat /run/secrets/GITHUB_TOKEN ) npm install --legacy-peer-deps \ + && code-server --version \ + && apk del $DEPS + +# Install tools +RUN apk add --no-cache bash bash-completion ca-certificates curl gnupg git git-lfs github-cli iotop jq less lsblk make nano openssh-client openssl p7zip rsync tree yq + +# Install pwsh +# See: https://learn.microsoft.com/en-us/powershell/scripting/install/install-alpine?view=powershell-7.3 +RUN apk add --no-cache \ + ca-certificates \ + less \ + ncurses-terminfo-base \ + krb5-libs \ + libgcc \ + libintl \ + libssl1.1 \ + libstdc++ \ + tzdata \ + userspace-rcu \ + zlib \ + icu-libs \ + curl +RUN apk -X https://dl-cdn.alpinelinux.org/alpine/edge/main add --no-cache lttng-ust +RUN mkdir -p /opt/microsoft/powershell/7 \ + && curl -sSL https://github.com/PowerShell/PowerShell/releases/download/v7.2.8/powershell-7.2.8-linux-alpine-x64.tar.gz | tar -C /opt/microsoft/powershell/7 -zxf - \ + && chmod +x /opt/microsoft/powershell/7/pwsh \ + && ln -s /opt/microsoft/powershell/7/pwsh /usr/bin/pwsh +# Disable telemetry for powershell 7.0.0 and above and .NET core: https://github.com/PowerShell/PowerShell/issues/16234#issuecomment-942139350 +ENV POWERSHELL_CLI_TELEMETRY_OPTOUT=1 +ENV POWERSHELL_TELEMETRY_OPTOUT=1 +ENV POWERSHELL_UPDATECHECK=Off +ENV POWERSHELL_UPDATECHECK_OPTOUT=1 +ENV DOTNET_CLI_TELEMETRY_OPTOUT=1 +ENV DOTNET_TELEMETRY_OPTOUT=1 +ENV COMPlus_EnableDiagnostics=0 +RUN pwsh -version +# Install pwsh module(s) +RUN pwsh -c 'Install-Module Pester -Force -Scope AllUsers -MinimumVersion 4.0.0 -MaximumVersion 4.10.1 -ErrorAction Stop' + +RUN apk add --no-cache sudo +RUN adduser -u 1000 --gecos '' -D user +RUN echo 'user ALL=(ALL) NOPASSWD:ALL' > /etc/sudoers.d/user + +# Install common extensions +USER user +# beautify - code formatter +RUN code-server --install-extension hookyqr.beautify@1.4.11 +# docker +RUN code-server --install-extension ms-azuretools.vscode-docker@1.18.0 +# firefox +RUN code-server --install-extension firefox-devtools.vscode-firefox-debug@2.9.1 +# git +RUN code-server --install-extension donjayamanne.githistory@0.6.19 +RUN code-server --install-extension eamodio.gitlens@11.6.0 +# github. Install the latest compatible version +RUN code-server --install-extension github.vscode-pull-request-github +# gitlab +RUN code-server --install-extension gitlab.gitlab-workflow@3.60.0 +# jinja +RUN code-server --install-extension samuelcolvin.jinjahtml@0.16.0 +RUN code-server --install-extension wholroyd.jinja@0.0.8 +# kubernetes +RUN code-server --install-extension ms-kubernetes-tools.vscode-kubernetes-tools@1.3.11 +# markdown +RUN code-server --install-extension bierner.markdown-preview-github-styles@0.1.6 +RUN code-server --install-extension DavidAnson.vscode-markdownlint@0.43.2 +# prettier - code formatter +RUN code-server --install-extension esbenp.prettier-vscode@9.0.0 +# pwsh +RUN code-server --install-extension ms-vscode.powershell@2021.12.0 +# svg +RUN code-server --install-extension jock.svg@1.4.17 +# terraform +RUN code-server --install-extension hashicorp.terraform@2.14.0 +# toml +RUN code-server --install-extension bungcip.better-toml@0.3.2 +# vscode +RUN code-server --install-extension vscode-icons-team.vscode-icons@11.13.0 +# xml +RUN code-server --install-extension redhat.vscode-xml@0.18.0 +# yaml +RUN code-server --install-extension redhat.vscode-yaml@1.9.1 + +# Install docker +# See: https://github.com/moby/moby/blob/v20.10.22/project/PACKAGERS.md +# Install docker-cli dependencies +USER root +RUN apk add --no-cache \ + ca-certificates \ + git \ + # Workaround for golang 1.15 not producing static binaries. See: https://github.com/containerd/containerd/issues/5824 + libc6-compat \ + openssh-client +# Install dockerd dependencies +RUN apk add --no-cache \ + btrfs-progs \ + e2fsprogs \ + e2fsprogs-extra \ + ip6tables \ + iptables \ + openssl \ + pigz \ + shadow-uidmap \ + xfsprogs \ + xz \ + zfs +# Add userns-remap support. See: https://docs.docker.com/engine/security/userns-remap/ +RUN set -eux; \ + addgroup -S dockremap; \ + adduser -S -G dockremap dockremap; \ + echo 'dockremap:231072:65536' >> /etc/subuid; \ + echo 'dockremap:231072:65536' >> /etc/subgid +# Install docker +RUN set -eux; \ + case "$( uname -m )" in \ + 'x86_64') \ + URL='https://download.docker.com/linux/static/stable/x86_64/docker-20.10.23.tgz'; \ + ;; \ + 'armhf') \ + URL='https://download.docker.com/linux/static/stable/armel/docker-20.10.23.tgz'; \ + ;; \ + 'armv7') \ + URL='https://download.docker.com/linux/static/stable/armhf/docker-20.10.23.tgz'; \ + ;; \ + 'aarch64') \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-20.10.23.tgz'; \ + ;; \ + # These architectures are no longer supported as of docker 20.10.x + # 'ppc64le') \ + # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-20.10.23.tgz'; \ + # ;; \ + # 's390x') \ + # URL='https://download.docker.com/linux/static/stable/s390x/docker-20.10.23.tgz'; \ + # ;; \ + *) \ + echo "Architecture not supported"; \ + exit 1; \ + ;; \ + esac; \ + wget -q "$URL" -O docker.tgz; \ + tar -xvf docker.tgz --strip-components=1 --no-same-owner --no-same-permissions -C /usr/local/bin; \ + ls -al /usr/local/bin; \ + rm -v docker.tgz; \ + containerd --version; \ + ctr --version; \ + docker --version; \ + dockerd --version; \ + runc --version +# Install bash completion +RUN wget -q https://raw.githubusercontent.com/docker/cli/v20.10.23/contrib/completion/bash/docker -O /usr/share/bash-completion/completions/docker +# Post-install docker. See: https://docs.docker.com/engine/install/linux-postinstall/ +RUN set -eux; \ + addgroup docker; \ + adduser user docker; +VOLUME /var/lib/docker + +# Install docker-compose v1 (deprecated, but for backward compatibility) +USER root +RUN apk add --no-cache docker-compose + +# Install docker-compose +RUN set -eux; \ + DOCKER_COMPOSE_VERSION=v2.17.3; \ + case "$( uname -m )" in \ + 'x86') \ + URL=https://github.com/docker/compose/releases/download/v2.17.3/docker-compose-linux-x86_64; \ + SHA256=6abb771a438b8ef82b0ff0ef0e2e404032699104c3c40c59cd174b56214876c3; \ + ;; \ + 'x86_64') \ + URL=https://github.com/docker/compose/releases/download/v2.17.3/docker-compose-linux-x86_64; \ + SHA256=6abb771a438b8ef82b0ff0ef0e2e404032699104c3c40c59cd174b56214876c3; \ + ;; \ + 'armhf') \ + URL=https://github.com/docker/compose/releases/download/v2.17.3/docker-compose-linux-armv6; \ + SHA256=e8c20e7e02faa623839ccb2af725ae0b343eafaf836b2386579e35c598d7468a; \ + ;; \ + 'armv7l') \ + URL=https://github.com/docker/compose/releases/download/v2.17.3/docker-compose-linux-armv7; \ + SHA256=72c26a8ab6a519bd9c645a314d6ed33ed694efeda3f787123806990124446fe8; \ + ;; \ + 'aarch64') \ + URL=https://github.com/docker/compose/releases/download/v2.17.3/docker-compose-linux-aarch64; \ + SHA256=07bdced6f502ab24b481f46aa6b205f97e2256e5cb11279648ac9c088220a38d; \ + ;; \ + 'ppc64le') \ + URL=https://github.com/docker/compose/releases/download/v2.17.3/docker-compose-linux-ppc64le; \ + SHA256=06075ea6594e42fd62360c029ed2b7cf294e8a50428cc3c8f0e022a68f672660; \ + ;; \ + 'riscv64') \ + URL=https://github.com/docker/compose/releases/download/v2.17.3/docker-compose-linux-riscv64; \ + SHA256=51c3e1b631be5845aecc9a66d4d0525c94dfec4d20a4ccf535a7f960f780e9f2; \ + ;; \ + 's390x') \ + URL=https://github.com/docker/compose/releases/download/v2.17.3/docker-compose-linux-s390x; \ + SHA256=666a07a5605e985ac96608a315cdae8151e72196733147dd81b61dd42c0777fe; \ + ;; \ + *) \ + echo "Architecture not supported"; \ + exit 1; \ + ;; \ + esac; \ + FILE=docker-compose; \ + wget -q "$URL" -O "$FILE"; \ + echo "$SHA256 $FILE" | sha256sum -c -; \ + mkdir -pv /usr/libexec/docker/cli-plugins; \ + mv -v docker-compose /usr/libexec/docker/cli-plugins/docker-compose; \ + chmod +x /usr/libexec/docker/cli-plugins/docker-compose; \ + docker compose version; \ + : + +# Install docker-buildx +RUN set -eux; \ + DOCKER_BUILDX_VERSION=v0.11.0; \ + case "$( uname -m )" in \ + 'x86_64') \ + URL=https://github.com/docker/buildx/releases/download/v0.11.0/buildx-v0.11.0.linux-amd64; \ + SHA256=ec2c9da22c3b733ad96d6a6897750153d884f1b2b86f2864ee5f743ce931055d; \ + ;; \ + 'armhf') \ + URL=https://github.com/docker/buildx/releases/download/v0.11.0/buildx-v0.11.0.linux-arm-v6; \ + SHA256=a925462288a55b709a42431fe39bb0e67f033961f02a4754897c4a388355feea; \ + ;; \ + 'armv7l') \ + URL=https://github.com/docker/buildx/releases/download/v0.11.0/buildx-v0.11.0.linux-arm-v7; \ + SHA256=e3f18a0d10346d8e53aff743fccfc0b95e45dc0235c3b0b72b49d3452c72b9e0; \ + ;; \ + 'aarch64') \ + URL=https://github.com/docker/buildx/releases/download/v0.11.0/buildx-v0.11.0.linux-arm64; \ + SHA256=e50f34f8feb7004407f826a375090bec6191891c473347b41b05cf5864bc5240; \ + ;; \ + 'ppc64le') \ + URL=https://github.com/docker/buildx/releases/download/v0.11.0/buildx-v0.11.0.linux-ppc64le; \ + SHA256=de8670ab6b2c34feb32289d04af07014bb4517de879d1fdb6e31a00da28f1df4; \ + ;; \ + 'riscv64') \ + URL=https://github.com/docker/buildx/releases/download/v0.11.0/buildx-v0.11.0.linux-riscv64; \ + SHA256=a07ad5791d6e60094e38147ef5f5eac406b2692aa380eae5ac866bde91bcdc89; \ + ;; \ + 's390x') \ + URL=https://github.com/docker/buildx/releases/download/v0.11.0/buildx-v0.11.0.linux-s390x; \ + SHA256=fc1a57b9fb69f7736908bbea94013eb17b5ae03cd5ed99b0bd61e223f9b6e4a7; \ + ;; \ + *) \ + echo "Architecture not supported"; \ + exit 1; \ + ;; \ + esac; \ + FILE=docker-buildx; \ + wget -q "$URL" -O "$FILE"; \ + echo "$SHA256 $FILE" | sha256sum -c -; \ + mkdir -pv /usr/libexec/docker/cli-plugins; \ + mv -v docker-buildx /usr/libexec/docker/cli-plugins/docker-buildx; \ + chmod +x /usr/libexec/docker/cli-plugins/docker-buildx; \ + docker buildx version; \ + : + +# Install binary tool(s) +RUN set -eux; \ + wget https://github.com/GoogleContainerTools/container-diff/releases/download/v0.17.0/container-diff-linux-amd64 -O container-diff; \ + sha256sum container-diff | grep '^818c219ce9f9670cd5c766b9da5036cf75bbf98bc99eb258f5e8f90e80367c88 '; \ + mv container-diff /usr/local/bin/container-diff; \ + chmod +x /usr/local/bin/container-diff; \ + container-diff version + +# Add a default settings.json +USER user +COPY --chown=1000:1000 settings.json /home/user/.local/share/code-server/User/settings.json + +# Remove the default code-server config file created when extensions are installed +USER user +RUN rm -fv ~/.config/code-server/config.yaml + +# Symlink code to code-server +USER root +RUN ln -sfn /usr/local/bin/code-server /usr/local/bin/code + +USER root +COPY docker-entrypoint.sh /docker-entrypoint.sh +RUN chmod +x /docker-entrypoint.sh + +ENV LANG=en_US.UTF-8 +USER user +WORKDIR /home/user +ENTRYPOINT [ "/docker-entrypoint.sh" ] +CMD [ "--bind-addr=0.0.0.0:8080", "--disable-telemetry", "--disable-update-check" ] diff --git a/variants/v4.17.0-docker-alpine-3.15/docker-entrypoint.sh b/variants/v4.17.0-docker-alpine-3.15/docker-entrypoint.sh new file mode 100644 index 00000000..7e387902 --- /dev/null +++ b/variants/v4.17.0-docker-alpine-3.15/docker-entrypoint.sh @@ -0,0 +1,16 @@ +#!/bin/sh +set -eu + +# See: https://github.com/docker-library/official-images#consistency +if [ "$#" -eq 0 ] || [ "${1#-}" != "$1" ]; then + set -- code-server "$@" +fi +if [ "$1" = 'code-server' ]; then + echo "Starting dockerd" + sudo rm -fv /var/run/docker.pid + sudo dockerd & + + echo "Starting code-server" + exec code-server "$@" +fi +exec "$@" diff --git a/variants/v4.17.0-docker-alpine-3.15/settings.json b/variants/v4.17.0-docker-alpine-3.15/settings.json new file mode 100644 index 00000000..2c0c4607 --- /dev/null +++ b/variants/v4.17.0-docker-alpine-3.15/settings.json @@ -0,0 +1,24 @@ +{ + "extensions.autoCheckUpdates": false, + "extensions.autoUpdate": false, + "extensions.ignoreRecommendations": true, + "extensions.showRecommendationsOnlyOnDemand": true, + "npm.fetchOnlinePackageInfo": false, + "telemetry.enableTelemetry": false, + "telemetry.telemetryLevel": "off", + "typescript.check.npmIsInstalled": false, + "typescript.disableAutomaticTypeAcquisition": false, + "typescript.surveys.enabled": false, + "workbench.enableExperiments": false, + "workbench.iconTheme": "vscode-icons", + "workbench.settings.enableNaturalLanguageSearch": false, + "workbench.startupEditor": "none", + "workbench.welcomePage.walkthroughs.openOnInstall": false, + "workbench.tips.enabled": false, + + // Extension-specific + "gitlens.showWelcomeOnInstall": false, + "gitlens.showWhatsNewAfterUpgrades": false, + "redhat.telemetry.enabled": false, + "vsicons.dontShowNewVersionMessage": true, +} \ No newline at end of file diff --git a/variants/v4.17.0-docker-rootless-alpine-3.15/Dockerfile b/variants/v4.17.0-docker-rootless-alpine-3.15/Dockerfile new file mode 100644 index 00000000..fa907555 --- /dev/null +++ b/variants/v4.17.0-docker-rootless-alpine-3.15/Dockerfile @@ -0,0 +1,358 @@ +# syntax=docker/dockerfile:1 +FROM alpine:3.15 +ARG TARGETPLATFORM +ARG TARGETOS +ARG TARGETARCH +ARG TARGETVARIANT +ARG BUILDPLATFORM +ARG BUILDOS +ARG BUILDARCH +ARG BUILDVARIANT +RUN set -eu; \ + echo "TARGETPLATFORM=$TARGETPLATFORM"; \ + echo "TARGETOS=$TARGETOS"; \ + echo "TARGETARCH=$TARGETARCH"; \ + echo "TARGETVARIANT=$TARGETVARIANT"; \ + echo "BUILDPLATFORM=$BUILDPLATFORM"; \ + echo "BUILDOS=$BUILDOS"; \ + echo "BUILDARCH=$BUILDARCH"; \ + echo "BUILDVARIANT=$BUILDVARIANT"; + +RUN --mount=type=secret,id=GITHUB_TOKEN \ + DEPS='alpine-sdk bash libstdc++ libc6-compat python3' \ + && apk add --no-cache $DEPS \ + # Constraint to npm 8, or else npm will fail with 'npm ERR! python is not a valid npm option'. See: https://stackoverflow.com/questions/74522956/python-is-not-a-valid-npm-option and https://jubianchi.github.io/semver-check/#/~8/8 + && apk add --no-cache 'npm~8' 'nodejs~16' \ + && npm config set python python3 \ + && GITHUB_TOKEN=$( cat /run/secrets/GITHUB_TOKEN ) npm install --global code-server@4.17.0 --unsafe-perm \ + # Fix missing dependencies. See: https://github.com/coder/code-server/issues/5530 + && cd /usr/local/lib/node_modules/code-server/lib/vscode && GITHUB_TOKEN=$( cat /run/secrets/GITHUB_TOKEN ) npm install --legacy-peer-deps \ + && code-server --version \ + && apk del $DEPS + +# Install tools +RUN apk add --no-cache bash bash-completion ca-certificates curl gnupg git git-lfs github-cli iotop jq less lsblk make nano openssh-client openssl p7zip rsync tree yq + +# Install pwsh +# See: https://learn.microsoft.com/en-us/powershell/scripting/install/install-alpine?view=powershell-7.3 +RUN apk add --no-cache \ + ca-certificates \ + less \ + ncurses-terminfo-base \ + krb5-libs \ + libgcc \ + libintl \ + libssl1.1 \ + libstdc++ \ + tzdata \ + userspace-rcu \ + zlib \ + icu-libs \ + curl +RUN apk -X https://dl-cdn.alpinelinux.org/alpine/edge/main add --no-cache lttng-ust +RUN mkdir -p /opt/microsoft/powershell/7 \ + && curl -sSL https://github.com/PowerShell/PowerShell/releases/download/v7.2.8/powershell-7.2.8-linux-alpine-x64.tar.gz | tar -C /opt/microsoft/powershell/7 -zxf - \ + && chmod +x /opt/microsoft/powershell/7/pwsh \ + && ln -s /opt/microsoft/powershell/7/pwsh /usr/bin/pwsh +# Disable telemetry for powershell 7.0.0 and above and .NET core: https://github.com/PowerShell/PowerShell/issues/16234#issuecomment-942139350 +ENV POWERSHELL_CLI_TELEMETRY_OPTOUT=1 +ENV POWERSHELL_TELEMETRY_OPTOUT=1 +ENV POWERSHELL_UPDATECHECK=Off +ENV POWERSHELL_UPDATECHECK_OPTOUT=1 +ENV DOTNET_CLI_TELEMETRY_OPTOUT=1 +ENV DOTNET_TELEMETRY_OPTOUT=1 +ENV COMPlus_EnableDiagnostics=0 +RUN pwsh -version +# Install pwsh module(s) +RUN pwsh -c 'Install-Module Pester -Force -Scope AllUsers -MinimumVersion 4.0.0 -MaximumVersion 4.10.1 -ErrorAction Stop' + +RUN apk add --no-cache sudo +RUN adduser -u 1000 --gecos '' -D user +RUN echo 'user ALL=(ALL) NOPASSWD:ALL' > /etc/sudoers.d/user + +# Install common extensions +USER user +# beautify - code formatter +RUN code-server --install-extension hookyqr.beautify@1.4.11 +# docker +RUN code-server --install-extension ms-azuretools.vscode-docker@1.18.0 +# firefox +RUN code-server --install-extension firefox-devtools.vscode-firefox-debug@2.9.1 +# git +RUN code-server --install-extension donjayamanne.githistory@0.6.19 +RUN code-server --install-extension eamodio.gitlens@11.6.0 +# github. Install the latest compatible version +RUN code-server --install-extension github.vscode-pull-request-github +# gitlab +RUN code-server --install-extension gitlab.gitlab-workflow@3.60.0 +# jinja +RUN code-server --install-extension samuelcolvin.jinjahtml@0.16.0 +RUN code-server --install-extension wholroyd.jinja@0.0.8 +# kubernetes +RUN code-server --install-extension ms-kubernetes-tools.vscode-kubernetes-tools@1.3.11 +# markdown +RUN code-server --install-extension bierner.markdown-preview-github-styles@0.1.6 +RUN code-server --install-extension DavidAnson.vscode-markdownlint@0.43.2 +# prettier - code formatter +RUN code-server --install-extension esbenp.prettier-vscode@9.0.0 +# pwsh +RUN code-server --install-extension ms-vscode.powershell@2021.12.0 +# svg +RUN code-server --install-extension jock.svg@1.4.17 +# terraform +RUN code-server --install-extension hashicorp.terraform@2.14.0 +# toml +RUN code-server --install-extension bungcip.better-toml@0.3.2 +# vscode +RUN code-server --install-extension vscode-icons-team.vscode-icons@11.13.0 +# xml +RUN code-server --install-extension redhat.vscode-xml@0.18.0 +# yaml +RUN code-server --install-extension redhat.vscode-yaml@1.9.1 + +# Install docker +# See: https://github.com/moby/moby/blob/v20.10.22/project/PACKAGERS.md +# Install docker-cli dependencies +USER root +RUN apk add --no-cache \ + ca-certificates \ + git \ + # Workaround for golang 1.15 not producing static binaries. See: https://github.com/containerd/containerd/issues/5824 + libc6-compat \ + openssh-client +# Install dockerd dependencies +RUN apk add --no-cache \ + btrfs-progs \ + e2fsprogs \ + e2fsprogs-extra \ + ip6tables \ + iptables \ + openssl \ + pigz \ + shadow-uidmap \ + xfsprogs \ + xz \ + zfs +# Add userns-remap support. See: https://docs.docker.com/engine/security/userns-remap/ +RUN set -eux; \ + addgroup -S dockremap; \ + adduser -S -G dockremap dockremap; \ + echo 'dockremap:231072:65536' >> /etc/subuid; \ + echo 'dockremap:231072:65536' >> /etc/subgid +# Install docker +RUN set -eux; \ + case "$( uname -m )" in \ + 'x86_64') \ + URL='https://download.docker.com/linux/static/stable/x86_64/docker-20.10.23.tgz'; \ + ;; \ + 'armhf') \ + URL='https://download.docker.com/linux/static/stable/armel/docker-20.10.23.tgz'; \ + ;; \ + 'armv7') \ + URL='https://download.docker.com/linux/static/stable/armhf/docker-20.10.23.tgz'; \ + ;; \ + 'aarch64') \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-20.10.23.tgz'; \ + ;; \ + # These architectures are no longer supported as of docker 20.10.x + # 'ppc64le') \ + # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-20.10.23.tgz'; \ + # ;; \ + # 's390x') \ + # URL='https://download.docker.com/linux/static/stable/s390x/docker-20.10.23.tgz'; \ + # ;; \ + *) \ + echo "Architecture not supported"; \ + exit 1; \ + ;; \ + esac; \ + wget -q "$URL" -O docker.tgz; \ + tar -xvf docker.tgz --strip-components=1 --no-same-owner --no-same-permissions -C /usr/local/bin; \ + ls -al /usr/local/bin; \ + rm -v docker.tgz; \ + containerd --version; \ + ctr --version; \ + docker --version; \ + dockerd --version; \ + runc --version +# Install bash completion +RUN wget -q https://raw.githubusercontent.com/docker/cli/v20.10.23/contrib/completion/bash/docker -O /usr/share/bash-completion/completions/docker +# Post-install docker. See: https://docs.docker.com/engine/install/linux-postinstall/ +RUN set -eux; \ + addgroup docker; \ + adduser user docker; +VOLUME /var/lib/docker + +# Install rootless docker. See: https://docs.docker.com/engine/security/rootless/ +USER root +RUN apk add --no-cache iproute2 fuse-overlayfs +RUN set -eux; \ + echo user:100000:65536 >> /etc/subuid; \ + echo user:100000:65536 >> /etc/subgid +RUN set -eux; \ + case "$( uname -m )" in \ + 'x86_64') \ + URL='https://download.docker.com/linux/static/stable/x86_64/docker-rootless-extras-20.10.23.tgz'; \ + ;; \ + 'aarch64') \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-20.10.23.tgz'; \ + ;; \ + 'armv7') \ + URL='https://download.docker.com/linux/static/stable/armhf/docker-rootless-extras-20.10.23.tgz'; \ + ;; \ + 'aarch64') \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-20.10.23.tgz'; \ + ;; \ + *) \ + echo "Architecture not supported"; \ + exit 1; \ + ;; \ + esac; \ + wget -q "$URL" -O docker-rootless-extras.tgz; \ + tar -xvf docker-rootless-extras.tgz --strip-components=1 --no-same-owner --no-same-permissions -C /usr/local/bin \ + 'docker-rootless-extras/rootlesskit' \ + 'docker-rootless-extras/rootlesskit-docker-proxy' \ + 'docker-rootless-extras/vpnkit' \ + ; \ + ls -al /usr/local/bin; \ + rm -v docker-rootless-extras.tgz; \ + rootlesskit --version; \ + vpnkit --version +# Create XDG_RUNTIME_DIR +RUN mkdir /run/user && chmod 1777 /run/user +# Create /var/lib/docker +RUN mkdir -p /home/user/.local/share/docker && chown user:user /home/user/.local/share/docker +VOLUME /home/user/.local/share/docker +# Set env vars +ENV XDG_RUNTIME_DIR=/run/user/1000 +ENV DOCKER_HOST=unix:///run/user/1000/docker.sock + +# Install docker-compose v1 (deprecated, but for backward compatibility) +USER root +RUN apk add --no-cache docker-compose + +# Install docker-compose +RUN set -eux; \ + DOCKER_COMPOSE_VERSION=v2.17.3; \ + case "$( uname -m )" in \ + 'x86') \ + URL=https://github.com/docker/compose/releases/download/v2.17.3/docker-compose-linux-x86_64; \ + SHA256=6abb771a438b8ef82b0ff0ef0e2e404032699104c3c40c59cd174b56214876c3; \ + ;; \ + 'x86_64') \ + URL=https://github.com/docker/compose/releases/download/v2.17.3/docker-compose-linux-x86_64; \ + SHA256=6abb771a438b8ef82b0ff0ef0e2e404032699104c3c40c59cd174b56214876c3; \ + ;; \ + 'armhf') \ + URL=https://github.com/docker/compose/releases/download/v2.17.3/docker-compose-linux-armv6; \ + SHA256=e8c20e7e02faa623839ccb2af725ae0b343eafaf836b2386579e35c598d7468a; \ + ;; \ + 'armv7l') \ + URL=https://github.com/docker/compose/releases/download/v2.17.3/docker-compose-linux-armv7; \ + SHA256=72c26a8ab6a519bd9c645a314d6ed33ed694efeda3f787123806990124446fe8; \ + ;; \ + 'aarch64') \ + URL=https://github.com/docker/compose/releases/download/v2.17.3/docker-compose-linux-aarch64; \ + SHA256=07bdced6f502ab24b481f46aa6b205f97e2256e5cb11279648ac9c088220a38d; \ + ;; \ + 'ppc64le') \ + URL=https://github.com/docker/compose/releases/download/v2.17.3/docker-compose-linux-ppc64le; \ + SHA256=06075ea6594e42fd62360c029ed2b7cf294e8a50428cc3c8f0e022a68f672660; \ + ;; \ + 'riscv64') \ + URL=https://github.com/docker/compose/releases/download/v2.17.3/docker-compose-linux-riscv64; \ + SHA256=51c3e1b631be5845aecc9a66d4d0525c94dfec4d20a4ccf535a7f960f780e9f2; \ + ;; \ + 's390x') \ + URL=https://github.com/docker/compose/releases/download/v2.17.3/docker-compose-linux-s390x; \ + SHA256=666a07a5605e985ac96608a315cdae8151e72196733147dd81b61dd42c0777fe; \ + ;; \ + *) \ + echo "Architecture not supported"; \ + exit 1; \ + ;; \ + esac; \ + FILE=docker-compose; \ + wget -q "$URL" -O "$FILE"; \ + echo "$SHA256 $FILE" | sha256sum -c -; \ + mkdir -pv /usr/libexec/docker/cli-plugins; \ + mv -v docker-compose /usr/libexec/docker/cli-plugins/docker-compose; \ + chmod +x /usr/libexec/docker/cli-plugins/docker-compose; \ + docker compose version; \ + : + +# Install docker-buildx +RUN set -eux; \ + DOCKER_BUILDX_VERSION=v0.11.0; \ + case "$( uname -m )" in \ + 'x86_64') \ + URL=https://github.com/docker/buildx/releases/download/v0.11.0/buildx-v0.11.0.linux-amd64; \ + SHA256=ec2c9da22c3b733ad96d6a6897750153d884f1b2b86f2864ee5f743ce931055d; \ + ;; \ + 'armhf') \ + URL=https://github.com/docker/buildx/releases/download/v0.11.0/buildx-v0.11.0.linux-arm-v6; \ + SHA256=a925462288a55b709a42431fe39bb0e67f033961f02a4754897c4a388355feea; \ + ;; \ + 'armv7l') \ + URL=https://github.com/docker/buildx/releases/download/v0.11.0/buildx-v0.11.0.linux-arm-v7; \ + SHA256=e3f18a0d10346d8e53aff743fccfc0b95e45dc0235c3b0b72b49d3452c72b9e0; \ + ;; \ + 'aarch64') \ + URL=https://github.com/docker/buildx/releases/download/v0.11.0/buildx-v0.11.0.linux-arm64; \ + SHA256=e50f34f8feb7004407f826a375090bec6191891c473347b41b05cf5864bc5240; \ + ;; \ + 'ppc64le') \ + URL=https://github.com/docker/buildx/releases/download/v0.11.0/buildx-v0.11.0.linux-ppc64le; \ + SHA256=de8670ab6b2c34feb32289d04af07014bb4517de879d1fdb6e31a00da28f1df4; \ + ;; \ + 'riscv64') \ + URL=https://github.com/docker/buildx/releases/download/v0.11.0/buildx-v0.11.0.linux-riscv64; \ + SHA256=a07ad5791d6e60094e38147ef5f5eac406b2692aa380eae5ac866bde91bcdc89; \ + ;; \ + 's390x') \ + URL=https://github.com/docker/buildx/releases/download/v0.11.0/buildx-v0.11.0.linux-s390x; \ + SHA256=fc1a57b9fb69f7736908bbea94013eb17b5ae03cd5ed99b0bd61e223f9b6e4a7; \ + ;; \ + *) \ + echo "Architecture not supported"; \ + exit 1; \ + ;; \ + esac; \ + FILE=docker-buildx; \ + wget -q "$URL" -O "$FILE"; \ + echo "$SHA256 $FILE" | sha256sum -c -; \ + mkdir -pv /usr/libexec/docker/cli-plugins; \ + mv -v docker-buildx /usr/libexec/docker/cli-plugins/docker-buildx; \ + chmod +x /usr/libexec/docker/cli-plugins/docker-buildx; \ + docker buildx version; \ + : + +# Install binary tool(s) +RUN set -eux; \ + wget https://github.com/GoogleContainerTools/container-diff/releases/download/v0.17.0/container-diff-linux-amd64 -O container-diff; \ + sha256sum container-diff | grep '^818c219ce9f9670cd5c766b9da5036cf75bbf98bc99eb258f5e8f90e80367c88 '; \ + mv container-diff /usr/local/bin/container-diff; \ + chmod +x /usr/local/bin/container-diff; \ + container-diff version + +# Add a default settings.json +USER user +COPY --chown=1000:1000 settings.json /home/user/.local/share/code-server/User/settings.json + +# Remove the default code-server config file created when extensions are installed +USER user +RUN rm -fv ~/.config/code-server/config.yaml + +# Symlink code to code-server +USER root +RUN ln -sfn /usr/local/bin/code-server /usr/local/bin/code + +USER root +COPY docker-entrypoint.sh /docker-entrypoint.sh +RUN chmod +x /docker-entrypoint.sh + +ENV LANG=en_US.UTF-8 +USER user +WORKDIR /home/user +ENTRYPOINT [ "/docker-entrypoint.sh" ] +CMD [ "--bind-addr=0.0.0.0:8080", "--disable-telemetry", "--disable-update-check" ] diff --git a/variants/v4.17.0-docker-rootless-alpine-3.15/docker-entrypoint.sh b/variants/v4.17.0-docker-rootless-alpine-3.15/docker-entrypoint.sh new file mode 100644 index 00000000..e3f7fd09 --- /dev/null +++ b/variants/v4.17.0-docker-rootless-alpine-3.15/docker-entrypoint.sh @@ -0,0 +1,27 @@ +#!/bin/sh +set -eu + +# See: https://github.com/docker-library/official-images#consistency +if [ "$#" -eq 0 ] || [ "${1#-}" != "$1" ]; then + set -- code-server "$@" +fi +if [ "$1" = 'code-server' ]; then + # Start rootless docker + # See: https://github.com/moby/moby/blob/v20.10.22/contrib/dockerd-rootless.sh + # See: https://github.com/docker-library/docker/blob/master/20.10/dind/dockerd-entrypoint.sh + echo "Starting rootless dockerd" + rootlesskit \ + --net="${DOCKERD_ROOTLESS_ROOTLESSKIT_NET:-vpnkit}" \ + --mtu="${DOCKERD_ROOTLESS_ROOTLESSKIT_MTU:-1500}" \ + --disable-host-loopback \ + --port-driver="${DOCKERD_ROOTLESS_ROOTLESSKIT_PORT_DRIVER:-builtin}" \ + --copy-up=/etc \ + --copy-up=/run \ + --propagation=rslave \ + ${DOCKERD_ROOTLESS_ROOTLESSKIT_FLAGS:-} \ + dockerd & + + echo "Starting code-server" + exec code-server "$@" +fi +exec "$@" diff --git a/variants/v4.17.0-docker-rootless-alpine-3.15/settings.json b/variants/v4.17.0-docker-rootless-alpine-3.15/settings.json new file mode 100644 index 00000000..2c0c4607 --- /dev/null +++ b/variants/v4.17.0-docker-rootless-alpine-3.15/settings.json @@ -0,0 +1,24 @@ +{ + "extensions.autoCheckUpdates": false, + "extensions.autoUpdate": false, + "extensions.ignoreRecommendations": true, + "extensions.showRecommendationsOnlyOnDemand": true, + "npm.fetchOnlinePackageInfo": false, + "telemetry.enableTelemetry": false, + "telemetry.telemetryLevel": "off", + "typescript.check.npmIsInstalled": false, + "typescript.disableAutomaticTypeAcquisition": false, + "typescript.surveys.enabled": false, + "workbench.enableExperiments": false, + "workbench.iconTheme": "vscode-icons", + "workbench.settings.enableNaturalLanguageSearch": false, + "workbench.startupEditor": "none", + "workbench.welcomePage.walkthroughs.openOnInstall": false, + "workbench.tips.enabled": false, + + // Extension-specific + "gitlens.showWelcomeOnInstall": false, + "gitlens.showWhatsNewAfterUpgrades": false, + "redhat.telemetry.enabled": false, + "vsicons.dontShowNewVersionMessage": true, +} \ No newline at end of file