Compare commits

..

3 Commits

Author SHA1 Message Date
74814c061b chore(deps): update dependency vitepress to v1.5.0
All checks were successful
ci/woodpecker/pr/docs Pipeline was successful
ci/woodpecker/pr/ci Pipeline was successful
2024-11-19 14:08:06 +01:00
c0aa7209aa chore(deps): update quay.io/linuxserver.io/code-server docker tag to v4.95.2 (#139)
All checks were successful
ci/woodpecker/push/docs Pipeline was successful
ci/woodpecker/push/ci Pipeline was successful
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [quay.io/linuxserver.io/code-server](https://github.com/linuxserver/docker-code-server/packages) ([source](https://github.com/linuxserver/docker-code-server)) | final | minor | `4.93.1` -> `4.95.2` |

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44LjAiLCJ1cGRhdGVkSW5WZXIiOiIzOS4xOC4yIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbInJlbm92YXRlIl19-->

Reviewed-on: #139
Co-authored-by: renovate-bot <renovate@ocram85.com>
Co-committed-by: renovate-bot <renovate@ocram85.com>
2024-11-19 14:07:49 +01:00
90e6bbbaa3 move addtional packages install to dockerfile (#138)
All checks were successful
ci/woodpecker/push/docs Pipeline was successful
ci/woodpecker/push/ci Pipeline was successful
### 📖 Summary

- install file and make

### 📑 Test Plan

 CI pipeline tests (Default)

### 💬 Details

_No response_

### 📚 Additional Notes

_No response_

Reviewed-on: #138
2024-11-19 13:43:43 +01:00
3 changed files with 17 additions and 7 deletions

View File

@ -1,4 +1,4 @@
FROM quay.io/linuxserver.io/code-server:4.93.1
FROM quay.io/linuxserver.io/code-server:4.95.2
#LABEL build_version=""
LABEL maintainer="OCram85"
@ -69,3 +69,12 @@ RUN \
COPY code-server/media /app/code-server/src/browser/media
COPY code-server/root/etc/s6-overlay/s6-rc.d/svc-code-server/run /etc/s6-overlay/s6-rc.d/svc-code-server/run
#endregion code-server
#region add-packages
RUN \
apt-get update && \
apt-get install --no-install-recommends -y \
file \
make && \
apt-get clean
#endregion add-packages

View File

@ -189,8 +189,7 @@ function instPwsh() {
say "Installing PowerShell..." "PowerShell"
# Install PowerShell
sudo -E apt-get install --no-install-recommends -y \
powershell-lts \
file
powershell-lts
say "done." "PowerShell"
}

View File

@ -1,7 +1,9 @@
# Packages
We already include the following packages while building the Arkanum image:
We already included the following packages while building the Arkanum image:
| Name | Description |
| ----- | ----------- |
| `git` | Git VCS |
| Name | Version | Description |
| -----: | :---------- | :------------: |
| `git` | `2.43.0` | Git VCS |
| `file` | `file-5.45` | file type info |
| `make` | `4.3` | GNU Make 4.3 |