6 lines
86 B
Docker
6 lines
86 B
Docker
FROM archlinux:latest
|
|
|
|
RUN pacman -Sy curl --noconfirm
|
|
|
|
COPY run.sh /
|
|
CMD ["/run.sh"]
|