Skip to content

Commit

Permalink
Update to bookworm
Browse files Browse the repository at this point in the history
  • Loading branch information
gbraad committed Jun 11, 2023
1 parent 1ed8f32 commit e2c3013
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .codesandbox/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=linux/amd64 ghcr.io/gbraad-devenv/debian/base:bullseye
FROM --platform=linux/amd64 ghcr.io/gbraad-devenv/debian/base:bookworm

USER gbraad

Expand Down
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1 +1 @@
FROM --platform=linux/amd64 ghcr.io/gbraad-devenv/debian/base:bullseye
FROM --platform=linux/amd64 ghcr.io/gbraad-devenv/debian/base:bookworm
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "Debian developer environment",
//"dockerFile": "Dockerfile",
"image": "ghcr.io/gbraad-devenv/debian/base:bullseye",
"image": "ghcr.io/gbraad-devenv/debian/base:bookworm",
"context": "..",
"runArgs": [ "--cap-add=NET_ADMIN", "--cap-add=NET_RAW", "--device=/dev/net/tun" ],
"postStartCommand": "github/install.sh",
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ Usage
### Podman

```bash
$ podman run -it ghcr.io/gbraad-devenv/debian/dotfiles:bullseye /bin/zsh
$ podman run -it ghcr.io/gbraad-devenv/debian/dotfiles:bookworm /bin/zsh
```

or with [Tailscale](https://tailscale.com) enabled:

```bash
$ podman run -it --cap-add=NET_ADMIN --cap-add=NET_RAW --device=/dev/net/tun ghcr.io/gbraad-devenv/debian/dotfiles:bullseye /bin/zsh
$ podman run -it --cap-add=NET_ADMIN --cap-add=NET_RAW --device=/dev/net/tun ghcr.io/gbraad-devenv/debian/dotfiles:bookworm /bin/zsh
```

Authors
Expand Down
6 changes: 3 additions & 3 deletions containers/Dockerfile-base
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM debian:bullseye
FROM debian:bookworm

USER root

Expand All @@ -19,8 +19,8 @@ RUN apt-get update \

RUN curl -sSL https://raw.githubusercontent.com/gbraad/dotfiles/master/install.sh | sh

RUN curl -fsSL https://pkgs.tailscale.com/stable/debian/bullseye.noarmor.gpg | sudo tee /usr/share/keyrings/tailscale-archive-keyring.gpg >/dev/null \
&& curl -fsSL https://pkgs.tailscale.com/stable/debian/bullseye.tailscale-keyring.list | sudo tee /etc/apt/sources.list.d/tailscale.list \
RUN curl -fsSL https://pkgs.tailscale.com/stable/debian/bookworm.noarmor.gpg | sudo tee /usr/share/keyrings/tailscale-archive-keyring.gpg >/dev/null \
&& curl -fsSL https://pkgs.tailscale.com/stable/debian/bookworm.tailscale-keyring.list | sudo tee /etc/apt/sources.list.d/tailscale.list \
&& sudo apt-get update \
&& sudo apt-get install -y \
tailscale \
Expand Down
2 changes: 1 addition & 1 deletion containers/Dockerfile-dotfiles
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/gbraad-devenv/debian/base:bullseye
FROM ghcr.io/gbraad-devenv/debian/base:bookworm

RUN git clone https://github.com/gbraad/dotfiles ~/.dotfiles \
&& ~/.dotfiles/install.sh
Expand Down
2 changes: 1 addition & 1 deletion containers/Dockerfile-systemd
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/gbraad-devenv/debian/dotfiles:bullseye
FROM ghcr.io/gbraad-devenv/debian/dotfiles:bookworm

USER root

Expand Down
2 changes: 1 addition & 1 deletion containers/Dockerfile-toolbox
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/gbraad-devenv/debian/base:bullseye
FROM ghcr.io/gbraad-devenv/debian/base:bookworm

USER root

Expand Down
2 changes: 1 addition & 1 deletion gitpod/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=linux/amd64 ghcr.io/gbraad-devenv/debian/base:bullseye
FROM --platform=linux/amd64 ghcr.io/gbraad-devenv/debian/base:bookworm

USER root

Expand Down

0 comments on commit e2c3013

Please sign in to comment.