mirror of
https://github.com/Telecominfraproject/openafc_final.git
synced 2026-01-27 02:22:02 +00:00
18 lines
585 B
Docker
18 lines
585 B
Docker
#
|
|
# Copyright © 2022 Broadcom. All rights reserved. The term "Broadcom"
|
|
# refers solely to the Broadcom Inc. corporate affiliate that owns
|
|
# the software below. This work is licensed under the OpenAFC Project License,
|
|
# a copy of which is included with this software program
|
|
#
|
|
FROM alpine:3.18 as staging
|
|
|
|
COPY worker/docker-entrypoint.sleep.sh /
|
|
RUN chmod +x /docker-entrypoint.sleep.sh
|
|
|
|
RUN apk add build-base cmake samurai boost-dev \
|
|
qt5-qtbase-dev armadillo-dev minizip-dev libbsd-dev gdal-dev
|
|
|
|
FROM alpine:3.18
|
|
COPY --from=staging / /
|
|
LABEL version="openafc-alpine-build-image"
|