1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

docker: fix Alpine images

This commit is contained in:
Steffen Vogel 2021-08-31 13:39:03 +02:00
parent bfafe10678
commit 7d8aa793aa

View file

@ -21,7 +21,9 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
###################################################################################
FROM alpine:3.13.1 AS dev
ARG ALPINE_VERSION=3.13.1
FROM alpine:${ALPINE_VERSION} AS dev
ARG DISTRO=alpine
ARG ARCH=x86_64
@ -105,7 +107,7 @@ RUN --security=insecure \
-DCMAKE_PREFIX_PATH=${PREFIX} .. && \
make -j8 install
FROM alpine:edge AS app
FROM alpine:${ALPINE_VERSION} AS app
ARG DISTRO=alpine
ARG ARCH=x86_64