mirror of
https://github.com/block/goose.git
synced 2026-04-26 10:40:45 +00:00
11 lines
269 B
Docker
11 lines
269 B
Docker
# Use Rust base image
|
|
FROM mcr.microsoft.com/devcontainers/rust:1
|
|
|
|
# Install additional dependencies
|
|
RUN apt-get update && apt-get install -y \
|
|
build-essential \
|
|
libdbus-1-dev \
|
|
gnome-keyring \
|
|
libxcb1-dev \
|
|
protobuf-compiler \
|
|
&& apt-get clean
|