mirror of
https://github.com/navidrome/navidrome.git
synced 2026-08-01 07:21:17 +00:00
8 lines
169 B
Docker
8 lines
169 B
Docker
FROM golang:1.26
|
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
sqlite3 libsqlite3-dev \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
WORKDIR /workspace
|