mirror of
https://github.com/outbackdingo/matchbox.git
synced 2026-02-05 00:25:56 +00:00
Bumps golang from 1.16.4 to 1.16.5. --- updated-dependencies: - dependency-name: golang dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
10 lines
246 B
Docker
10 lines
246 B
Docker
FROM docker.io/golang:1.16.5 AS builder
|
|
COPY . src
|
|
RUN cd src && make build
|
|
|
|
FROM docker.io/alpine:3.13
|
|
LABEL maintainer="Dalton Hubble <dghubble@gmail.com>"
|
|
COPY --from=builder /go/src/bin/matchbox /matchbox
|
|
EXPOSE 8080
|
|
ENTRYPOINT ["/matchbox"]
|