From f8b6e90be81cfcda4ba20f4a3c563d69e8023eb5 Mon Sep 17 00:00:00 2001 From: Simon Date: Wed, 14 Dec 2022 11:12:44 +0000 Subject: [PATCH] Update for CI Dockerfile --- .gitlab-ci.yml | 2 +- docker-configs/Dockerfile-ci | 36 ++++++++++++++++++++++++++++++++++++ 2 files changed, 37 insertions(+), 1 deletion(-) create mode 100644 docker-configs/Dockerfile-ci diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index cf3bad1..c7c6528 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -25,7 +25,7 @@ build-dev: # This job runs in the build stage, which runs first. - cd docker-configs # - docker buildx build --no-cache -f Dockerfile-proxy -t hacknix/freedmr:development-latest -t gitlab.hacknix.net:5050/hacknix/freedmr:development-latest --platform linux/arm/v7,linux/amd64,linux/i386,linux/arm64 --push . - - docker buildx build --no-cache -f Dockerfile-proxy -t hacknix/freedmr:development-latest -t gitlab.hacknix.net:5050/hacknix/freedmr:development-latest --platform linux/amd64 --push . + - docker buildx build --no-cache -f Dockerfile-ci -t hacknix/freedmr:development-latest -t gitlab.hacknix.net:5050/hacknix/freedmr:development-latest --platform linux/amd64 --push . - echo "Compile complete." diff --git a/docker-configs/Dockerfile-ci b/docker-configs/Dockerfile-ci new file mode 100644 index 0000000..12cd55a --- /dev/null +++ b/docker-configs/Dockerfile-ci @@ -0,0 +1,36 @@ +############################################################################### +# Copyright (C) 2020 Simon Adlem, G7RZU +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +############################################################################### +FROM python:3.10-alpine + +ENTRYPOINT [ "/entrypoint" ] + +COPY . /opt/freedmr + +RUN adduser -D -u 54000 radio && \ + apk update && \ + apk add git gcc musl-dev && \ + cd /opt && \ + cd /opt/freedmr && \ + git checkout testing && \ + pip install --no-cache-dir -r requirements.txt && \ + apk del git gcc musl-dev && \ + chown -R radio: /opt/freedmr + +COPY entrypoint-proxy /entrypoint +USER radio +