This repository has been archived on 2020-09-13. You can view files and clone it, but cannot push or open issues or pull requests.
magic-app/Dockerfile

22 lines
294 B
Docker

FROM python:3.8-alpine
ENV APP_ROOT /magic_app/
WORKDIR ${APP_ROOT}
COPY . ${APP_ROOT}
RUN apk add --update \
build-base \
curl \
git \
libffi-dev \
libsasl \
openssl-dev \
python3-dev
RUN pip install "poetry>=1.0.9,<2.0"
RUN poetry install \
--no-dev \
--no-interaction