Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Dockerfile for a simple Flask Project | Docker for Flask
Docker for Python Developers
course content

Contenido del Curso

Docker for Python Developers

Docker for Python Developers

1. Key Docker Concepts
2. Quick Start
3. Docker for Flask
4. Advanced Concepts

Dockerfile for a simple Flask Project

To package our project into a Docker container, we need an additional command: WORKDIR.

The WORKDIR command in Docker sets the working directory for any subsequent instructions in the Dockerfile. In your case, WORKDIR /flask-app sets /flask-app as the working directory.

This means that any further instructions (such as COPY, RUN, CMD, etc.) will be executed in the context of this directory. For example, if you execute COPY app.py /flask-app, the file app.py will be copied into the /flask-app directory inside the container.

This is useful for organizing your project within the container and ensuring clarity about where operations are taking place within the Docker image.

What does the WORKDIR command in Docker do?

Selecciona la respuesta correcta

¿Todo estuvo claro?

Sección 3. Capítulo 3
We're sorry to hear that something went wrong. What happened?
some-alt