It tells Docker:
| Without Dockerfile | With Dockerfile |
|---|---|
| Manual image creation | Automated |
| Not repeatable | Same image every time |
| Error-prone | Version controlled |
Defines the base image to start from.
FROM openjdk:17
Means: start from a Java 17 environment.
Sets the working directory inside the container. All following commands run from this path.
WORKDIR /app