mirror of
https://github.com/Jguer/yay.git
synced 2024-11-06 17:17:22 +01:00
fdcf6ef664
* add integration test framework * fix integration tests * fix integration tests
13 lines
208 B
Docker
13 lines
208 B
Docker
FROM docker.io/jguer/yay-builder:latest
|
|
LABEL maintainer="Jguer,docker@jguer.space"
|
|
|
|
ARG VERSION
|
|
ARG PREFIX
|
|
ARG ARCH
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
|
|
RUN make release VERSION=${VERSION} PREFIX=${PREFIX} ARCH=${ARCH}
|