mirror of
https://github.com/steveiliop56/tinyauth.git
synced 2025-10-27 20:25:41 +00:00
Bumps golang from 1.24-alpine3.21 to 1.25-alpine3.21. --- updated-dependencies: - dependency-name: golang dependency-version: 1.25-alpine3.21 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
19 lines
280 B
Docker
19 lines
280 B
Docker
FROM golang:1.25-alpine3.21
|
|
|
|
WORKDIR /tinyauth
|
|
|
|
COPY go.mod ./
|
|
COPY go.sum ./
|
|
|
|
RUN go mod download
|
|
|
|
COPY ./cmd ./cmd
|
|
COPY ./internal ./internal
|
|
COPY ./main.go ./
|
|
COPY ./air.toml ./
|
|
|
|
RUN go install github.com/air-verse/air@v1.61.7
|
|
|
|
EXPOSE 3000
|
|
|
|
ENTRYPOINT ["air", "-c", "air.toml"] |