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

fix: reduce docker build image size by over 13x #8

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
29 changes: 10 additions & 19 deletions resources/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,21 +1,12 @@
# From https://github.com/aws/aws-cdk/blob/95f8cef0505dd2deb8ee5e45ab98c6ab1b764b02/packages/%40aws-cdk/aws-lambda-python-alpha/lib/Dockerfile
# The correct AWS SAM build image based on the runtime of the function will be
# passed as build arg. The default allows to do `docker build .` when testing.
ARG PYTHON_VERSION=3.7
ARG IMAGE=public.ecr.aws/sam/build-python${PYTHON_VERSION}
FROM $IMAGE

ARG PIP_INDEX_URL
ARG PIP_EXTRA_INDEX_URL
ARG HTTPS_PROXY
ARG UV_VERSION=0.4.20

ENV PIP_CACHE_DIR=/tmp/pip-cache
ENV UV_CACHE_DIR=/tmp/uv-cache

RUN mkdir /tmp/pip-cache && \
chmod -R 777 /tmp/pip-cache && \
pip install uv==$UV_VERSION && \
rm -rf /tmp/pip-cache/*
# Build arg defaults (allow simple `docker build .` when testing)
ARG PYTHON_VERSION=3.13
ARG UV_VERSION
FROM ghcr.io/astral-sh/uv:${UV_VERSION:+${UV_VERSION}-}python${PYTHON_VERSION}-bookworm-slim

RUN apt-get update && \
apt-get install -y rsync && \
rm -rf /var/lib/apt/lists/* && \
mkdir -p /.cache/uv && \
chmod 777 /.cache/uv

CMD [ "python" ]
Loading