mirror of
https://git.proxmox.com/git/fwupd
synced 2025-08-03 07:20:00 +00:00

Since the containers are ephemeral just declare directly in the Dockerfile This also simplifies the run command for users building fwupd
10 lines
214 B
Plaintext
10 lines
214 B
Plaintext
FROM %%%ARCH_PREFIX%%%debian:testing
|
|
%%%OS%%%
|
|
RUN echo fubar > /etc/machine-id
|
|
%%%ARCH_SPECIFIC_COMMAND%%%
|
|
%%%INSTALL_DEPENDENCIES_COMMAND%%%
|
|
RUN mkdir /build
|
|
WORKDIR /build
|
|
COPY . .
|
|
CMD ["./contrib/ci/debian.sh"]
|