Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • dominik.heinrich/plv2_supply_chain_poc
1 result
Show changes
Commits on Source (2)
FROM archlinux:latest AS packager
RUN pacman-key --init
RUN pacman -Sy --noconfirm base-devel git nginx
RUN mkdir /build
COPY ./files/ /build/
RUN useradd -m max && chown -R max:max /build
RUN echo "max ALL=(ALL:ALL) NOPASSWD: ALL" >> /etc/sudoers
USER max
WORKDIR /build/not_a_virus1.0
RUN tar -czf default_package.tar.gz default_package/
RUN makepkg -s --noconfirm
......