Files
ortools-clone/cmake/docker/archlinux/Dockerfile
Corentin Le Molgat 045a5d93b7 Sync google3 github
2022-06-17 14:23:23 +02:00

11 lines
316 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