mirror of
https://github.com/outbackdingo/matchbox.git
synced 2026-01-27 18:19:36 +00:00
Bumps alpine from 3.15.4 to 3.16.0. --- updated-dependencies: - dependency-name: alpine dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
10 lines
248 B
Docker
10 lines
248 B
Docker
FROM docker.io/golang:1.18.2 AS builder
|
|
COPY . src
|
|
RUN cd src && make build
|
|
|
|
FROM docker.io/alpine:3.16.0
|
|
LABEL maintainer="Dalton Hubble <dghubble@gmail.com>"
|
|
COPY --from=builder /go/src/bin/matchbox /matchbox
|
|
EXPOSE 8080
|
|
ENTRYPOINT ["/matchbox"]
|