1
0
mirror of https://github.com/craigerl/aprsd.git synced 2026-06-01 13:45:06 -04:00

Updated build.sh

This patch forces the rebuild of the docker buildx build container.
Also makes the tag, version available from cmdln
This commit is contained in:
2021-10-07 10:56:09 -04:00
parent 5b17228811
commit db9cbf51df
2 changed files with 21 additions and 9 deletions
+2 -2
View File
@@ -1,14 +1,14 @@
FROM python:3.8-slim as aprsd
# Dockerfile for building a container during aprsd development.
ARG BRANCH
ARG branch
ARG UID
ARG GID
ENV APRS_USER=aprs
ENV HOME=/home/aprs
ENV APRSD=http://github.com/craigerl/aprsd.git
ENV APRSD_BRANCH=${BRANCH:-master}
ENV APRSD_BRANCH=${branch:-master}
ENV VIRTUAL_ENV=$HOME/.venv3
ENV UID=${UID:-1000}
ENV GID=${GID:-1000}