12 lines
317 B
Docker
12 lines
317 B
Docker
# Create a virtual environment with all tools installed
|
|
# ref: https://hub.docker.com/_/archlinux/
|
|
FROM archlinux:latest AS base
|
|
|
|
# Install system build dependencies
|
|
ENV PATH=/usr/local/bin:$PATH
|
|
RUN pacman -Syu --noconfirm git base-devel cmake
|
|
CMD [ "/bin/bash" ]
|
|
|
|
FROM base AS swig
|
|
RUN pacman -Syu --noconfirm swig
|