-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
16 changed files
with
1,558 additions
and
1,214 deletions.
There are no files selected for viewing
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
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
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
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
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
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,12 +1,12 @@ | ||
ARG BASE_IMAGE | ||
FROM ${BASE_IMAGE:-python:3.10-slim} | ||
FROM ${BASE_IMAGE:-python:3.11-slim} | ||
|
||
MAINTAINER Justin Flannery "[email protected]" | ||
|
||
RUN python -m pip install --upgrade pip | ||
COPY pyproject.toml README.md /tmp/lunchable/ | ||
COPY lunchable/ /tmp/lunchable/lunchable/ | ||
COPY requirements/prod.txt /tmp/lunchable/requirements.txt | ||
COPY requirements/requirements-prod.txt /tmp/lunchable/requirements.txt | ||
RUN pip install -r /tmp/lunchable/requirements.txt | ||
RUN pip install /tmp/lunchable/[all] && rm -rf /tmp/lunchable | ||
|
||
|
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.