Skip to content

Commit

Permalink
updating version and setuptools
Browse files Browse the repository at this point in the history
  • Loading branch information
jason-ford-codecov committed Aug 14, 2024
1 parent 18f1639 commit a4440c9
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Dockerfile.requirements
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# syntax=docker/dockerfile:1.3

# BUILD STAGE - Download dependencies
FROM python:3.11-alpine as build
FROM python:3.12.5-alpine3.20 as build

RUN apk update \
&& apk add --update --no-cache \
Expand All @@ -27,7 +27,7 @@ WORKDIR /pip-packages/
RUN pip wheel -r /requirements.txt

# RUNTIME STAGE - Copy packages from build stage and install runtime dependencies
FROM python:3.11-alpine
FROM python:3.12.5-alpine3.20

RUN apk -U upgrade binutils busybox expat libretls && \
apk add --no-cache postgresql-libs && \
Expand All @@ -41,6 +41,7 @@ RUN apk -U upgrade binutils busybox expat libretls && \
openssl-dev \
make \
curl-dev \
py3-setuptools \
libcurl

WORKDIR /pip-packages/
Expand Down

0 comments on commit a4440c9

Please sign in to comment.