18 lines
570 B
Docker
18 lines
570 B
Docker
FROM tiangolo/uvicorn-gunicorn-fastapi:python3.7
|
|
|
|
RUN pip install celery~=4.3 passlib[bcrypt] tenacity requests emails "fastapi>=0.16.0" uvicorn gunicorn pyjwt python-multipart email_validator jinja2 psycopg2-binary alembic SQLAlchemy
|
|
|
|
# For development, Jupyter remote kernel, Hydrogen
|
|
# Using inside the container:
|
|
# jupyter lab --ip=0.0.0.0 --allow-root --NotebookApp.custom_display_url=http://127.0.0.1:8888
|
|
ARG env=prod
|
|
RUN bash -c "if [ $env == 'dev' ] ; then pip install jupyterlab ; fi"
|
|
EXPOSE 8888
|
|
|
|
COPY ./app /app
|
|
WORKDIR /app/
|
|
|
|
ENV PYTHONPATH=/app
|
|
|
|
EXPOSE 80
|