Files
NowChessSystems/.devcontainer/Dockerfile
T
Lala, Shahd bc279562ba
Build & Test (NowChessSystems) TeamCity build failed
fix: NOT FOR MAIN OR MERGE: just for the frontend to work insdie the same container
2026-05-03 10:57:51 +00:00

16 lines
477 B
Docker

FROM mcr.microsoft.com/devcontainers/java:21-bookworm
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
curl \
postgresql-client \
redis-tools \
stockfish \
&& curl -fsSL https://deb.nodesource.com/setup_22.x | bash - \
&& apt-get install -y --no-install-recommends nodejs \
&& rm -rf /var/lib/apt/lists/*
RUN mkdir -p /home/vscode/.gradle/wrapper/dists \
&& chown -R vscode:vscode /home/vscode/.gradle