Я использую Docker [Docker версия 17.06.2-ce, сборка a04f55b] на машине с Ubuntu.
Просто выполняю очень простое упражнение из Docker для создания образа Docker: https://docs.docker.com/get-started/part2/#apppy
При выполнении следующей команды
sudo docker build -t friendlyhello .
я получаю следующую ошибку
error checking context: 'can't stat '/home/xyz/docker_experiments''.
Я понимаю, что это как-то связано с apparmour и разрешениями.
По запросу это Dockerfile
# Use an official Python runtime as a parent image
FROM python:2.7-slim
# Set the working directory to /app
WORKDIR /app
# Copy the current directory contents into the container at /app
COPY . /app
# Install any needed packages specified in requirements.txt
RUN pip install --trusted-host pypi.python.org -r requirements.txt
# Make port 80 available to the world outside this container
EXPOSE 80
# Define environment variable
ENV NAME World
# Run app.py when the container launches
CMD ["python", "app.py"]