mirror of
https://github.com/dokku/dokku.git
synced 2025-12-29 00:25:08 +01:00
Bumps golang from 1.22.5 to 1.22.6. --- updated-dependencies: - dependency-name: golang dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
9 lines
144 B
Docker
9 lines
144 B
Docker
FROM golang:1.22.6
|
|
|
|
EXPOSE 3000/tcp
|
|
|
|
ADD . /go/src/github.com/dokku/apps/web
|
|
WORKDIR /go/src/github.com/dokku/apps/web
|
|
|
|
RUN go install -v ./...
|