~edwargix/msc-link-bot

9a158e7916bb3b608b45dc64917a959601f71b5a — David Florness 1 year, 7 months ago 6835667
Dockerfile: specify alpine version
1 files changed, 2 insertions(+), 2 deletions(-)

M contrib/Dockerfile
M contrib/Dockerfile => contrib/Dockerfile +2 -2
@@ 1,11 1,11 @@
FROM alpine AS builder
FROM alpine:3.17 AS builder

RUN apk update
RUN apk add g++ go make olm-dev
COPY . .
RUN make

FROM alpine
FROM alpine:3.17

COPY --from=builder /msc-link-bot /usr/local/bin/msc-link-bot
RUN apk add olm && \