conventions.io

Tech Challenge

2026-07-31

☸️

Daily Tech Challenge

Kubernetes

medium
Question 1 of 5

The image myapp:1.0 was built with ENTRYPOINT ["/app/server"] and CMD ["--port=8080"]. The Pod below sets args but no command. What process line does the container actually run?

Example
# Dockerfile of myapp:1.0
#   ENTRYPOINT ["/app/server"]
#   CMD ["--port=8080"]

apiVersion: v1
kind: Pod
metadata:
  name: app
spec:
  containers:
  - name: app
    image: myapp:1.0
    args: ["--port=9090"]

Friday, July 31, 2026 · A new challenge drops every day