-
Notifications
You must be signed in to change notification settings - Fork 1
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 #4 from cisagov/first-commits
Provide initial functionality
- Loading branch information
Showing
13 changed files
with
613 additions
and
181 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,9 +7,9 @@ ARG PY_VERSION=3.9 | |
|
||
# Install the Python packages necessary to install the Lambda dependencies. | ||
RUN python3 -m pip install --no-cache-dir \ | ||
pip \ | ||
setuptools \ | ||
wheel \ | ||
pip \ | ||
setuptools \ | ||
wheel \ | ||
# This version of pipenv is the minimum version to allow passing arguments | ||
# to pip with the --extra-pip-args option. | ||
&& python3 -m pip install --no-cache-dir "pipenv>=2022.9.8" | ||
|
@@ -31,13 +31,7 @@ FROM amazon/aws-lambda-python:$PY_VERSION as build-stage | |
# For a list of pre-defined annotation keys and value types see: | ||
# https://github.com/opencontainers/image-spec/blob/master/annotations.md | ||
### | ||
# [email protected] is a very generic email distribution, and it is | ||
# unlikely that anyone on that distribution is familiar with the | ||
# particulars of your repository. It is therefore *strongly* | ||
# suggested that you use an email address here that is specific to the | ||
# person or group that maintains this repository; for example: | ||
# LABEL org.opencontainers.image.authors="[email protected]" | ||
LABEL org.opencontainers.image.authors="[email protected]" | ||
LABEL org.opencontainers.image.authors="[email protected]" | ||
LABEL org.opencontainers.image.vendor="Cybersecurity and Infrastructure Security Agency" | ||
|
||
# Declare it a third time so it's brought into this scope. | ||
|
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,4 +1,7 @@ | ||
--requirement requirements-test.txt | ||
# boto3 is not strictly required, but it can be useful for some local | ||
# development testing activities, so we include it here as a convenience. | ||
boto3 | ||
ipython | ||
pipenv | ||
semver |
Oops, something went wrong.