Files
ortools-clone/makefiles/docker/archlinux/Dockerfile
Mizux Seiha e7d5cde718 ci: Add Makefile CI
* Add documentation
* Add docker layer diagram
* Add Docker/Makefile ci
* Add gh workflow
* gh workflow disable fail-fast
2020-04-13 17:41:46 +02:00

13 lines
369 B
Docker

# Create a virtual environment with all tools installed
# ref: https://hub.docker.com/_/archlinux/
FROM archlinux/base 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