Initial commit;

This commit is contained in:
2026-01-17 22:45:02 +03:00
commit 2b8c774d0a
34 changed files with 1728 additions and 0 deletions

20
deploy/Dockerfile Normal file
View File

@@ -0,0 +1,20 @@
FROM golang:1.25-alpine AS builder
WORKDIR /app
COPY go.mod go.sum ./
RUN go mod tidy && go mod download
COPY . .
RUN GOOS=linux go build -o steam-parser ./cmd/main.go
# --------------------------------- #
FROM alpine:latest AS configure
RUN apk add --no-cache tzdata
WORKDIR /app/
COPY --from=builder /app/steam-parser .
CMD ["./steam-parser"]