Files
ortools-clone/makefiles/docker/alpine/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

12 lines
365 B
Docker

# Create a virtual environment with all tools installed
# ref: https://hub.docker.com/_/alpine
FROM alpine:edge AS base
LABEL maintainer="corentinl@google.com"
# Install system build dependencies
ENV PATH=/usr/local/bin:$PATH
RUN apk add --no-cache git build-base linux-headers cmake xfce4-dev-tools
CMD [ "/bin/sh" ]
FROM base AS swig
RUN apk add --no-cache swig