Files
ortools-clone/makefiles/docker/archlinux/Dockerfile
2021-12-06 14:01:45 +01:00

12 lines
368 B
Docker

# Create a virtual environment with all tools installed
# ref: https://hub.docker.com/_/archlinux/
FROM archlinux:latest AS base
LABEL maintainer="corentinl@google.com"
# Install system build dependencies
ENV PATH=/usr/local/bin:$PATH
RUN pacman -Syu --noconfirm git base-devel cmake lsb-release
CMD [ "/bin/bash" ]
FROM base AS swig
RUN pacman -Syu --noconfirm swig