Add an upgrade test

This commit is contained in:
Bryce Lampe
2024-04-25 09:22:20 -07:00
parent 2499eeb27b
commit 5175dbeb3f
16 changed files with 1370 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
FROM --platform=$BUILDPLATFORM alpine as build
RUN echo ${BUILDPLATFORM} > buildplatform
RUN echo ${TARGETPLATFORM} > targetplatform
FROM build
RUN cat buildplatform
RUN cat targetplatform