-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #51 from ropable/master
Update Django minor version
- Loading branch information
Showing
5 changed files
with
543 additions
and
548 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# Prepare the base environment. | ||
FROM python:3.9.15-slim-buster as builder_base | ||
FROM python:3.10.12-slim-bookworm as builder_base_caddy | ||
MAINTAINER [email protected] | ||
LABEL org.opencontainers.image.source https://github.com/dbca-wa/caddy | ||
|
||
|
@@ -10,9 +10,9 @@ RUN apt-get update -y \ | |
&& pip install --upgrade pip | ||
|
||
# Install Python libs using poetry. | ||
FROM builder_base as python_libs | ||
FROM builder_base_caddy as python_libs_caddy | ||
WORKDIR /app | ||
ENV POETRY_VERSION=1.2.2 | ||
ENV POETRY_VERSION=1.5.1 | ||
RUN pip install "poetry==$POETRY_VERSION" | ||
COPY poetry.lock pyproject.toml /app/ | ||
RUN poetry config virtualenvs.create false \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.