-
Notifications
You must be signed in to change notification settings - Fork 125
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 #34 from mandiant/feat/poetry_packaging
Poetry packaging and dependency updates
- Loading branch information
Showing
17 changed files
with
679 additions
and
655 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
.dockerignore | ||
.git | ||
.github | ||
gha-creds-*.json | ||
**/__pycache__ | ||
.pytest_cache | ||
*.egg-info | ||
*.egg | ||
**/*.py[cod] | ||
build | ||
dist |
This file was deleted.
Oops, something went wrong.
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
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,11 +1,9 @@ | ||
FROM python:3.8 | ||
|
||
RUN pip install --upgrade pip pipenv | ||
FROM python:3.9 | ||
|
||
WORKDIR /src/stringsifter | ||
COPY . /src/stringsifter | ||
|
||
RUN pipenv install --system --deploy | ||
RUN pip install -r requirements.txt | ||
RUN pip install -e /src/stringsifter | ||
|
||
CMD [ "/bin/bash" ] |
Oops, something went wrong.