-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixes #253 adds reproducible testing container #254
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,4 @@ tests/__pycache__/ | |
debhelper-build-stamp | ||
*.debhelper.log | ||
build/ | ||
.venv |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# We want to do things using Debian Buster's own Python | ||
FROM debian:buster | ||
|
||
# make Apt non-interactive | ||
RUN echo 'APT::Get::Assume-Yes "true";' > /etc/apt/apt.conf.d/90circleci \ | ||
&& echo 'DPkg::Options "--force-confnew";' >> /etc/apt/apt.conf.d/90circleci | ||
|
||
ENV DEBIAN_FRONTEND=noninteractive | ||
# Make sure PATH includes ~/.local/bin | ||
# https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=839155 | ||
# This only works for root. The circleci user is done near the end of this Dockerfile | ||
RUN echo 'PATH="$HOME/.local/bin:$PATH"' >> /etc/profile.d/user-local-path.sh | ||
|
||
# man directory is missing in some base images | ||
# https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=863199 | ||
RUN apt-get update \ | ||
&& mkdir -p /usr/share/man/man1 \ | ||
&& apt-get install -y \ | ||
git mercurial xvfb apt \ | ||
locales sudo openssh-client ca-certificates tar gzip parallel \ | ||
net-tools netcat unzip zip bzip2 gnupg curl wget make python3 python3-venv python3-pip | ||
|
||
|
||
# Set timezone to UTC by default | ||
RUN ln -sf /usr/share/zoneinfo/Etc/UTC /etc/localtime | ||
|
||
# Use unicode | ||
RUN locale-gen C.UTF-8 || true | ||
ENV LANG=C.UTF-8 | ||
|
||
RUN groupadd --gid 3434 ci \ | ||
&& useradd --uid 3434 --gid ci --shell /bin/bash --create-home ci \ | ||
&& echo 'ci ALL=NOPASSWD: ALL' >> /etc/sudoers.d/50-ci \ | ||
&& echo 'Defaults env_keep += "DEBIAN_FRONTEND"' >> /etc/sudoers.d/env_keep | ||
|
||
|
||
|
||
USER ci | ||
ENV PATH /home/ci/.local/bin:/home/ci/bin:${PATH} | ||
|
||
CMD ["/bin/sh"] |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
DATE_STR := $(shell date +"%Y_%m_%d") | ||
BUILDER_IMAGE ?= "quay.io/freedomofpress/packaging-debian-buster:$(DATE_STR)" | ||
|
||
.PHONY: build-container | ||
build-container: ## Build Docker image for Debian Buster wheel and package creation | ||
@echo "███Building Docker image $(BUILDER_IMAGE) for Debian Buster wheel and package creation" | ||
@docker build --no-cache -t $(BUILDER_IMAGE) . | ||
|
||
.PHONY: push-container | ||
push-container: ## Push the Docker image for Debian Buster wheel and package creation to quay.io | ||
@echo "███Pushing Docker image for Debian package creation to quay.io..." | ||
@./push.sh | ||
|
||
.PHONY: help | ||
help: ## Print this message and exit. | ||
@printf "Molecule scenario for building a Docker container for Debian package creation.\n" | ||
@printf "Subcommands:\n\n" | ||
@awk 'BEGIN {FS = ":.*?## "} /^[0-9a-zA-Z_-]+:.*?## / {printf "\033[36m%s\033[0m : %s\n", $$1, $$2}' $(MAKEFILE_LIST) \ | ||
| sort \ | ||
| column -s ':' -t |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# sha256 digest quay.io/freedomofpress/packaging-debian-buster:2021_07_09 | ||
7ac0e1e1c29d9a60e210e0da246a6d60e49c9eab18cf654bacf95ce5fed1413b | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. shouldn't this be: There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
I actually have similar question and forgot to put in the comment. The checksum mentioned here is created by our scripts, may be I did a mistake in calling the script. Thank you for pointing out. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It is now fixed with the hash of the newer image. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. great I'll take another look at this PR |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#!/bin/bash | ||
DATE_STR=$(date +"%Y_%m_%d") | ||
QUAY_REPO=quay.io/freedomofpress/packaging-debian-buster | ||
|
||
set -e | ||
set -x | ||
|
||
docker push "${QUAY_REPO}:${DATE_STR}" | ||
|
||
echo "# sha256 digest ${QUAY_REPO}:${DATE_STR}" > image_hash | ||
docker inspect --format='{{index .RepoDigests 0}}' "${QUAY_REPO}:${DATE_STR}" \ | ||
| sed 's/.*://g' >> image_hash |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
confirmed