Files
FastSync/Dockerfile
T
TapTap 8c7ebbfe32
CI / build-and-test (push) Failing after 10s
ci: add make to Docker image, use v3 tag
2026-07-18 15:27:35 +02:00

7 lines
304 B
Docker

FROM ubuntu:24.04
RUN apt-get update && apt-get install -y --no-install-recommends \
gcc cmake make 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/*