initial commit
Some checks failed
release / deploy (push) Failing after 42s

This commit is contained in:
2025-04-10 22:22:27 +02:00
commit 7845e35f1c
2 changed files with 45 additions and 0 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM golang:1.23
# Install git and nodejs
RUN apt-get update && apt-get install -y \
git \
curl \
&& curl -fsSL https://deb.nodesource.com/setup_18.x | bash - \
&& apt-get install -y nodejs \
&& apt-get clean
# Verify installations
RUN git --version && node --version && npm --version