initial support for docker actions

This commit is contained in:
David Nedved
2020-04-01 09:32:19 +10:00
parent d5dc992a62
commit 141829f722
2 changed files with 90 additions and 1 deletions
+13 -1
View File
@@ -1,4 +1,16 @@
FROM debian:stretch
# Uncomment if building locally...
# FROM debian:stretch
FROM --platform=${TARGETPLATFORM:-linux/amd64} debian:stretch
ARG BUILD_DATE
ARG VERSION
ARG VCS_REF
ARG TARGETPLATFORM
LABEL org.label-schema.build-date=$BUILD_DATE \
org.label-schema.version=$VERSION \
org.label-schema.vcs-ref=$VCS_REF \
RUN apt update && apt install -y \
curl \