Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert "use docker build stage" #6

Merged
merged 1 commit into from
Oct 25, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 9 additions & 13 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,22 +1,18 @@
# --- Build Stage ---
FROM python:3.9-alpine AS builder
FROM python:3.9-alpine

# TODO don't need gcc on the final image, but need it for poetry install
RUN apk add build-base libffi-dev


RUN apk add --no-cache build-base libffi-dev
ENV PYTHONUNBUFFERED 1

WORKDIR /app
RUN pip3 install --no-cache-dir poetry

RUN pip3 install poetry

COPY . .

WORKDIR /app/examples
RUN poetry install --no-root --only main

# --- Runtime Stage ---
FROM python:3.9-alpine

COPY --from=builder /usr/local/lib/python3.9/site-packages /usr/local/lib/python3.9/site-packages
COPY --from=builder /usr/local/bin /usr/local/bin
COPY --from=builder /app /app


WORKDIR /app/examples
CMD [ "poetry", "run", "uvicorn", "--host", "0.0.0.0", "examples.app:app" ]