Skip to content

Instantly share code, notes, and snippets.

@pyjavo
Created January 27, 2020 22:27
Show Gist options
  • Select an option

  • Save pyjavo/930e6463cc4f1abc366c3881f4986ec4 to your computer and use it in GitHub Desktop.

Select an option

Save pyjavo/930e6463cc4f1abc366c3881f4986ec4 to your computer and use it in GitHub Desktop.

Revisions

  1. pyjavo created this gist Jan 27, 2020.
    52 changes: 52 additions & 0 deletions Dockerfile
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,52 @@
    FROM python:3.7-alpine

    ENV PYTHONUNBUFFERED 1

    RUN apk update \
    # psycopg2 dependencies
    && apk add --virtual build-deps gcc python3-dev musl-dev \
    && apk add postgresql-dev \
    # Pillow dependencies
    && apk add jpeg-dev zlib-dev freetype-dev lcms2-dev openjpeg-dev tiff-dev tk-dev tcl-dev \
    # CFFI dependencies
    && apk add libffi-dev py-cffi \
    # Translations dependencies
    && apk add gettext \
    # https://docs.djangoproject.com/en/dev/ref/django-admin/#dbshell
    && apk add postgresql-client
    #for geodjango

    RUN apk add --no-cache --virtual .build-deps-edge \
    --repository http://dl-cdn.alpinelinux.org/alpine/edge/testing \
    --repository http://dl-cdn.alpinelinux.org/alpine/edge/main \
    gdal-dev \
    geos-dev \
    proj4-dev

    # Requirements are installed here to ensure they will be cached.
    COPY ./requirements /requirements
    RUN pip install -r /requirements/local.txt

    COPY ./compose/production/django/entrypoint /entrypoint
    RUN sed -i 's/\r//' /entrypoint
    RUN chmod +x /entrypoint

    COPY ./compose/local/django/start /start
    RUN sed -i 's/\r//' /start
    RUN chmod +x /start

    COPY ./compose/local/django/celery/worker/start /start-celeryworker
    RUN sed -i 's/\r//' /start-celeryworker
    RUN chmod +x /start-celeryworker

    COPY ./compose/local/django/celery/beat/start /start-celerybeat
    RUN sed -i 's/\r//' /start-celerybeat
    RUN chmod +x /start-celerybeat

    COPY ./compose/local/django/celery/flower/start /start-flower
    RUN sed -i 's/\r//' /start-flower
    RUN chmod +x /start-flower

    WORKDIR /app

    ENTRYPOINT ["/entrypoint"]