Moved some files, implemented Dockerfile for tests, implemented makefile with install functionality

This commit is contained in:
2025-10-16 00:21:16 +02:00
parent 727254f43a
commit 470e8ad5a3
9 changed files with 301 additions and 83 deletions
+6
View File
@@ -0,0 +1,6 @@
FROM golang:1.24-alpine AS builder
WORKDIR /app
COPY . .
RUN apk add --no-cache make
RUN make install
CMD ["cheatsh"]