summaryrefslogtreecommitdiffstats
path: root/docker-files/debian.Dockerfile
diff options
context:
space:
mode:
authorMarkus Pöschl <Poeschl@users.noreply.github.com>2021-05-14 14:41:12 +0200
committerMarkus Pöschl <Poeschl@users.noreply.github.com>2021-05-15 14:39:26 +0200
commit77d902bbc1db47547c6d46ce85cea96a54c7e724 (patch)
treebbff0e843eba4bb731d1834b5b31ecac18673cc7 /docker-files/debian.Dockerfile
parent281382c030110c42841dbd84f5ebbd6616f17cf3 (diff)
Change the actions to build both of the versioned variants
Diffstat (limited to 'docker-files/debian.Dockerfile')
-rw-r--r--docker-files/debian.Dockerfile7
1 files changed, 3 insertions, 4 deletions
diff --git a/docker-files/debian.Dockerfile b/docker-files/debian.Dockerfile
index ff9a522a..f5924f65 100644
--- a/docker-files/debian.Dockerfile
+++ b/docker-files/debian.Dockerfile
@@ -4,8 +4,7 @@
# https://github.com/nicolargo/glances
#
-ARG ARCH
-FROM ${ARCH}python:3.9-slim-buster as build
+FROM python:3.9-slim-buster as build
# Install package
RUN apt-get update && \
@@ -21,7 +20,7 @@ RUN apt-get update && \
FROM build as remoteInstall
# Force rebuild otherwise it could be cached without rerun
-ARG VCS_REF
+ARG ACTION_ID
RUN pip3 install --no-cache-dir --user glances[all]
@@ -45,7 +44,7 @@ CMD python3 -m glances -C /glances/conf/glances.conf $GLANCES_OPT
#Create running images without any building dependency
-FROM ${ARCH}python:3.9-slim-buster as minimal
+FROM python:3.9-slim-buster as minimal
RUN apt-get update && \
apt-get install -y --no-install-recommends \