fwupd/contrib/ci/Dockerfile-debian.in
Mario Limonciello a0f9f619ca contrib: Don't declare OS variable in docker run command (Fixes: #413)
Since the containers are ephemeral just declare directly in the Dockerfile
This also simplifies the run command for users building fwupd
2018-02-21 13:30:12 -06:00

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"]