Base Templates

This commit is contained in:
2025-12-10 20:39:40 +01:00
commit 10dfdd5605
7 changed files with 120 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
# For testing
FROM golang:1.24-alpine AS builder
# FROM node:22-alpine AS builder
# FROM python:3.12-alpine AS builder
# FROM eclipse-temurin:21-jdk-alpine AS builder
# FROM mcr.microsoft.com/dotnet/sdk:9.0-alpine AS builder
# FROM rust:1.81-alpine AS builder
WORKDIR /app
COPY . .
RUN apk add --no-cache make
RUN make install
# CMD ["ls"]