Скопируйте файл в образ докера в LCOW - PullRequest
0 голосов
/ 28 июня 2018

Я хочу попробовать кое-что из LCOW для докера, поэтому я попытался создать образ на основе redis: 4.0.8-alpine. У меня есть специальный файл sentinel.conf, который мне нужно скопировать на изображение. Когда Docker доходит до шага копирования, я получаю эту ошибку:

invalid COPY: Current WorkingDir / is not platform consistent

Вот мой докер-файл

# Set the base image
FROM redis:4.0.8-alpine
WORKDIR /

# Copy over the configuration file
COPY sentinel.conf /usr/local/etc/redis/sentinel.conf
COPY redis.conf /usr/local/etc/redis/redis.conf

# Copy over the entrypoint that sets the environment variables
COPY redis-entrypoint.sh /usr/local/bin/

# Set the entrypoint to the new entrypoint script
# this script calls the original entrypoint when configuration file is ready
ENTRYPOINT ["redis-entrypoint.sh"]

# Define the entry point for the image
CMD [ "redis-server", "/usr/local/etc/redis/redis.conf" ]

Любая идея, как я могу сделать свою рабочую платформу DIR последовательной?

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...