mirror of
https://github.com/yanislav-igonin/micrach
synced 2026-07-27 05:14:17 +03:00
* chore: add agents md * docs: expand repository and setup guides * docs: plan project modernization * docs: add Wave 1 implementation plan * test: characterize legacy behavior * build: update Go and Fiber v2 * fix(gateway): preserve duplicate auth behavior * refactor(db): migrate to pgx v5 * refactor: replace deprecated I/O APIs * build: add local PostgreSQL compose * build: add multi-stage image * ci: replace legacy deployment workflow * fix(deps): update vulnerable Go modules * docs: document modern development workflow
25 lines
628 B
Docker
25 lines
628 B
Docker
FROM golang:1.26.5-alpine3.24 AS build
|
|
|
|
WORKDIR /src
|
|
COPY go.mod go.sum ./
|
|
RUN go mod download
|
|
COPY . .
|
|
RUN CGO_ENABLED=0 GOOS=linux go build -trimpath -ldflags="-s -w" -o /out/micrach .
|
|
|
|
FROM alpine:3.24.1
|
|
|
|
RUN apk add --no-cache ca-certificates \
|
|
&& addgroup -S micrach \
|
|
&& adduser -S -G micrach micrach \
|
|
&& mkdir -p /app/uploads \
|
|
&& chown -R micrach:micrach /app
|
|
|
|
WORKDIR /app
|
|
COPY --from=build /out/micrach ./micrach
|
|
COPY --chown=micrach:micrach templates/ templates/
|
|
COPY --chown=micrach:micrach static/ static/
|
|
COPY --chown=micrach:micrach migrations/ migrations/
|
|
|
|
USER micrach
|
|
ENTRYPOINT ["./micrach"]
|