Skip to content

Instantly share code, notes, and snippets.

@marcelo-clarifai
Created July 29, 2020 13:47
Show Gist options
  • Save marcelo-clarifai/2935bab97a888d6d5542b72ed25fcf55 to your computer and use it in GitHub Desktop.
Save marcelo-clarifai/2935bab97a888d6d5542b72ed25fcf55 to your computer and use it in GitHub Desktop.
# `python-base` sets up all our shared environment variables
FROM python:3.8.1-slim as python-base
# python
ENV PYTHONUNBUFFERED=1 \
# prevents python creating .pyc files
PYTHONDONTWRITEBYTECODE=1 \
\
# pip
PIP_NO_CACHE_DIR=off \
PIP_DISABLE_PIP_VERSION_CHECK=on \
PIP_DEFAULT_TIMEOUT=100 \
\
# poetry
# https://python-poetry.org/docs/configuration/#using-environment-variables
POETRY_VERSION=1.0.3 \
# make poetry install to this location
POETRY_HOME="/opt/poetry" \
# make poetry create the virtual environment in the project's root
# it gets named `.venv`
POETRY_VIRTUALENVS_IN_PROJECT=true \
# do not ask any interactive question
POETRY_NO_INTERACTION=1 \
\
# paths
# this is where our requirements + virtual environment will live
PYSETUP_PATH="/opt/pysetup" \
VENV_PATH="/opt/pysetup/.venv"
# prepend poetry and venv to path
ENV PATH="$POETRY_HOME/bin:$VENV_PATH/bin:$PATH"
# `builder-base` stage is used to build deps + create our virtual environment
FROM python-base as builder-base
RUN apt-get update \
&& apt-get install --no-install-recommends -y \
# deps for installing poetry
curl \
# deps for building python deps
build-essential
# install poetry - respects $POETRY_VERSION & $POETRY_HOME
RUN curl -sSL https://raw.githubusercontent.com/sdispater/poetry/master/get-poetry.py | python
# copy project requirement files here to ensure they will be cached.
WORKDIR $PYSETUP_PATH
COPY poetry.lock pyproject.toml ./
# install runtime deps - uses $POETRY_VIRTUALENVS_IN_PROJECT internally
RUN poetry install --no-dev
# `development` image is used during development / testing
FROM python-base as development
ENV FASTAPI_ENV=development
WORKDIR $PYSETUP_PATH
# copy in our built poetry + venv
COPY --from=builder-base $POETRY_HOME $POETRY_HOME
COPY --from=builder-base $PYSETUP_PATH $PYSETUP_PATH
# quicker install as runtime deps are already installed
RUN poetry install
# will become mountpoint of our code
WORKDIR /app
EXPOSE 8000
CMD ["uvicorn", "--reload", "main:app"]
# `production` image used for runtime
FROM python-base as production
ENV FASTAPI_ENV=production
COPY --from=builder-base $PYSETUP_PATH $PYSETUP_PATH
COPY ./app /app/
WORKDIR /app
CMD ["gunicorn", "-k", "uvicorn.workers.UvicornWorker", "main:app"]
from __future__ import absolute_import
import json
import redis
from flask import Flask, request
from typing import Text, Optional, Dict, Any
app = Flask(__name__)
def get_current_user() -> Optional[Dict[Text, Any]]:
"""Retrieve the current user from intermediate storage."""
red = redis.StrictRedis(host="10.100.133.177", port=6379, db=1)
encoded_user = red.get("user")
if encoded_user:
return json.loads(encoded_user)
else:
return None
def store_user(user: Dict[Text, Any]) -> None:
"""Store a users details to our intermediate storage."""
red = redis.StrictRedis(host="10.100.133.177", port=6379, db=1)
red.set("user", json.dumps(user))
@app.route('/', methods=["GET"])
def greet():
"""Send a welcoming message to the user."""
user = get_current_user()
if user is not None:
return "Hello, {}!".format(user.get("name"))
else:
return "Hello, unknown stranger!"
@app.route('/', methods=["POST"])
def save_name():
"""Change a users details, most importantly his name."""
user = request.json
store_user(user)
return "I'll try to remember your name, {}!".format(user.get("name"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment