-
-
Notifications
You must be signed in to change notification settings - Fork 0
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
5 changed files
with
26 additions
and
8 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 |
---|---|---|
@@ -1,13 +1,14 @@ | ||
FROM python:3.11 | ||
LABEL io.whalebrew.config.networks '["host"]' | ||
ADD requirements.txt /app/ | ||
ADD pyproject.toml /app/ | ||
WORKDIR /app | ||
RUN pip install -r requirements.txt | ||
RUN pip install poetry | ||
RUN poetry config virtualenvs.create false | ||
RUN poetry install --all-extras --no-root | ||
COPY dothttp /app/dothttp | ||
COPY dotextensions /app/dotextensions | ||
COPY setup.py README.md /app/ | ||
RUN ls && python setup.py install | ||
RUN pip install flask flask-cors waitress | ||
COPY README.md /app/ | ||
RUN poetry install | ||
ENTRYPOINT ["python"] | ||
CMD ["-m", "waitress", "--port", "5000", "dotextensions.server.agent:app"] | ||
EXPOSE 5000 |
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 +1 @@ | ||
__version__ = "0.0.43a18" | ||
__version__ = "0.0.43a19" |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "dothttp-req" | ||
version = "0.0.43a18" | ||
version = "0.0.43a19" | ||
description = "Dothttp is Simple http client for testing and development" | ||
authors = ["Prasanth <[email protected]>"] | ||
license = "MIT" | ||
|
@@ -42,6 +42,7 @@ waitress = "3.0.0" | |
flask = "3.0.2" | ||
python-magic = "^0.4.27" | ||
js2py = "0.74" | ||
flask-cors = "^4.0.1" | ||
|
||
[tool.poetry.extras] | ||
js = ["js2py"] | ||
|