diff --git a/Dockerfile b/Dockerfile index 6389ddf..cef3529 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,6 @@ FROM python:3.8-alpine ENV APP_ROOT /magic_app/ -ENV CELERY_USER celery WORKDIR ${APP_ROOT} COPY . ${APP_ROOT} @@ -15,13 +14,6 @@ RUN apk add --update \ openssl-dev \ 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 \