8 lines
227 B
Docker
8 lines
227 B
Docker
FROM archlinux:latest
|
|
|
|
RUN pacman -Sy --noconfirm
|
|
RUN pacman -S --noconfirm docker docker-buildx docker-compose && rm /var/cache/pacman/pkg/*
|
|
RUN pacman -S --noconfirm git && rm /var/cache/pacman/pkg/*
|
|
|
|
RUN mkdir -p /workspace
|