Sto costruendo il Dockerfile per script Python che verrà eseguito nel sistema Windows 10 minikube di seguito è il mio Dockerfile
Costruire la finestra mobile usando il comando seguente
docker build -t python-helloworld .
e caricandolo nel demone docker minikube
docker save python-helloworld | (eval $(minikube docker-env) && docker load)
File Docker
FROM python:3.7-alpine
#add user group and ass user to that group
RUN addgroup -S appgroup && adduser -S appuser -G appgroup
#creates work dir
WORKDIR /app
#copy python script to the container folder app
COPY helloworld.py /app/helloworld.py
#user is appuser
USER appuser
ENTRYPOINT ["python", "/app/helloworld.py"]
file pythoncronjob.yml (cron job file)
apiVersion: batch/v1beta1
kind: CronJob
metadata:
name: python-helloworld
spec:
schedule: "*/1 * * * *"
jobTemplate:
spec:
backoffLimit: 5
template:
spec:
containers:
- name: python-helloworld
image: python-helloworld
imagePullPolicy: IfNotPresent
command: [/app/helloworld.py]
restartPolicy: OnFailure
Di seguito è riportato il comando per eseguire questo lavoro Kubernetes
kubectl create -f pythoncronjob.yml
Ma ottenere il processo di errore riportato di seguito non funziona in modo anomalo ma quando hai eseguito il Dockerfile da solo funziona bene
standard_init_linux.go: 211: processo utente exec causato "errore formato exec"