[Solved] where is dockerfile and how to add lines in it?


You create a textfile called Dockerfile in your project directory and put all your code in there.

Example:

FROM ubuntu

RUN apt-get update && apt-get install -y <your-dependencys>

COPY . .

2nd line installs packages on the image.

3rd line copys every file in your current directory to the image.

2

solved where is dockerfile and how to add lines in it?