mirror of
https://gitea.tendokyu.moe/self/even
synced 2024-11-12 01:40:50 +01:00
13 lines
207 B
Docker
13 lines
207 B
Docker
|
FROM alpine:latest AS xbuild
|
||
|
|
||
|
RUN apk add --no-cache make mingw-w64-gcc
|
||
|
|
||
|
WORKDIR /build
|
||
|
COPY . .
|
||
|
|
||
|
ARG VERSION
|
||
|
RUN make VERSION="${VERSION}"
|
||
|
|
||
|
FROM scratch
|
||
|
COPY --from=xbuild /build/even.sys /build/even.pdb /
|