mirror of
https://github.com/agresdominik/cheat_sheet.git
synced 2026-04-21 10:01:58 +00:00
7 lines
118 B
Docker
7 lines
118 B
Docker
FROM golang:1.24-alpine AS builder
|
|
WORKDIR /app
|
|
COPY . .
|
|
RUN apk add --no-cache make
|
|
RUN make install
|
|
CMD ["cheatsh"]
|