Skip to content

Use ubuntu:23.10

Use ubuntu:23.10 #199

Workflow file for this run

name: docker-linux
on:
push:
branches:
- "**"
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
dockerfile:
- Dockerfile.arch
- Dockerfile.ubuntu
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build
run: |
docker build -t dotfiles -f "${{ matrix.dockerfile }}" .
- name: Show package versions
run: |
docker \
run \
--rm \
dotfiles \
zsh -c "nvim --version \
&& zsh --version \
&& tmux -V \
&& rg --version \
&& git --version \
&& git --version \
&& \$HOME/.local/share/fnm/fnm exec --using=20 node --version \
&& \$HOME/.local/share/fnm/fnm exec --using=20 npm list --location=global \
"