blob: ca97f9f4498d5f3ab5aaef9f23626d3d4956733b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
FROM mcr.microsoft.com/devcontainers/go:1.24-bullseye
# Install additional OS packages for CGO, SQLite, and devcontainer networking
RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
&& apt-get -y install --no-install-recommends \
build-essential \
sqlite3 \
libsqlite3-dev \
socat \
curl \
procps \
git
# Install golangci-lint (for ticket NK-arckp3)
RUN curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.64.5
# [Optional] Install Node.js is handled by features in devcontainer.json
|