Files
FastSync/Dockerfile
T
TapTap ed7f8ee56e
CI / build-and-test (push) Successful in 4s
CI / build-and-test (pull_request) Successful in 4s
ci: add g++ and libc6-dev, use v4 image (verified locally)
2026-07-18 15:31:41 +02:00

7 lines
318 B
Docker

FROM ubuntu:24.04
RUN apt-get update && apt-get install -y --no-install-recommends \
gcc g++ make libc6-dev cmake libzstd-dev git ca-certificates curl && \
curl -fsSL https://deb.nodesource.com/setup_20.x | bash - && \
apt-get install -y --no-install-recommends nodejs && \
rm -rf /var/lib/apt/lists/*