You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Copy, then install requirements before copying rest for a requirements cache layer.
RUN mkdir /app
COPY requirements.txt /app
RUN pip install -r /app/requirements.txt
COPY . /app
WORKDIR /app
EXPOSE 5000
# Fix
RUN sed -i "s|ver = geos_version().decode()|ver = geos_version().decode().split(' ')[0]|g" /usr/local/lib/python2.7/site-packages/django/contrib/gis/geos/libgeos.py