Convert to a django-list structure

This commit is contained in:
Luke Murphy
2020-07-04 13:12:31 +02:00
parent 61a1ae62ab
commit a05cfe3337
32 changed files with 1145 additions and 115 deletions

26
Dockerfile Normal file
View File

@ -0,0 +1,26 @@
FROM python:3.8-alpine
ENV APP_ROOT /magic_app/
ENV CELERY_USER celery
WORKDIR ${APP_ROOT}
COPY . ${APP_ROOT}
RUN apk add --update \
build-base \
curl \
git \
libffi-dev \
libsasl \
python3-dev
RUN addgroup -S ${CELERY_USER}
RUN adduser -D \
-h ${APP_ROOT} \
-s /usr/sbin/nologin \
-G ${CELERY_USER} ${CELERY_USER}
RUN pip install "poetry>=1.0.9,<2.0"
RUN poetry install