Junior — Middle
Have you created custom Dockerfiles for containerizing applications?
sobes.tech AI
Answer from AI
Yes, creating your own Dockerfile is a standard practice for containerizing applications. The Dockerfile describes how to build the image: the base image, installing dependencies, copying code, and running the application.
Example of a simple Dockerfile for a Python application:
FROM python:3.9-slim
WORKDIR /app
COPY requirements.txt ./
RUN pip install -r requirements.txt
COPY . .
CMD ["python", "app.py"]
This file allows you to build an image that runs the Python application in an isolated container.