Frente a
E: Package 'libmysqlclient-dev' has no installation candidate
Estoy usando este blog como referencia: https://rehalcon.blogspot.com/2018/03/dockerize-your-django-app-for-local.html
Aquí está mi archivo acoplable:
FROM python:2-slim
LABEL org.label-schema.name='app-dj'
RUN apt-get clean && \
apt-get update && \
apt-get install -y \
curl \
vim \
tmux \
build-essential \
libjpeg-dev \
libpq-dev \
python-dev \
libmysqlclient-dev && \
pip install -U pip 3to2
COPY requirements.txt req.txt
RUN pip install -r /req.txt
RUN mkdir -p /app
WORKDIR /app
EXPOSE 8069
CMD python /app/server.py
Tengo un problema similar en Ubuntu 14.04. Qué versión estás usando?
—
Bindelstif
Estaba usando la imagen de docker python: 2-slim, este archivo de docker anterior funciona para Ubuntu: 16.04
—
Prakash Kumar
Parece que diferentes versiones apuntan a repositorios ligeramente diferentes. Pude hacerlo funcionar con el paquete default-libmysqlclient-dev en su lugar.
—
Bindelstif