Files
Corentin Le Molgat 5804d32419 make(ci): remove LABEL
2022-06-21 10:41:25 +02:00

11 lines
325 B
Docker

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