initial commit
All checks were successful
release / deploy (push) Successful in 1m35s

This commit is contained in:
2025-04-10 22:22:27 +02:00
commit 54c35c88dc
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