mirror of
https://github.com/aljazceru/goose.git
synced 2026-01-01 21:44:26 +01:00
12 lines
269 B
Docker
12 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
|