Skip to content
Snippets Groups Projects
Commit ec9d33dc authored by David Horvát's avatar David Horvát
Browse files

added space

parent 9a67b695
No related branches found
No related tags found
No related merge requests found
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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment