This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import os | |
import argparse | |
from pikepdf import Pdf | |
def main(args): | |
opdf = Pdf.open(args.odd) | |
epdf = Pdf.open(args.even) | |
mpdf = Pdf.new() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# syntax = docker/dockerfile:experimental | |
FROM BASEIMAGE | |
# Copy the hyperkube binary | |
COPY hyperkube /hyperkube | |
RUN --mount=type=bind,source=secrets,target=/run/secrets \ | |
ln -s /hyperkube /apiserver \ | |
&& ln -s /hyperkube /cloud-controller-manager \ | |
&& ln -s /hyperkube /controller-manager \ |