-
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.
add machine generation tool src in the repo for docker deployment
- Loading branch information
Showing
23 changed files
with
367 additions
and
71 deletions.
There are no files selected for viewing
Binary file not shown.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
Binary file not shown.
File renamed without changes.
Binary file not shown.
File renamed without changes.
File renamed without changes.
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,15 @@ | ||
FROM python:3 | ||
# simple BASE-Image | ||
FROM python:3.10.11 | ||
|
||
WORKDIR /assetapp | ||
# working directory for te container | ||
WORKDIR /fx_data_source | ||
|
||
ENV FLASK_APP=app.py | ||
# Install requirements | ||
COPY ./req.txt /fx_data_source/req.txt | ||
RUN pip install --no-cache-dir --upgrade -r /fx_data_source/req.txt | ||
|
||
COPY . . | ||
|
||
RUN pip install -r requirements.txt | ||
|
||
EXPOSE 8500 | ||
|
||
CMD ["python", "app.py"] | ||
# Run "API-APP" | ||
COPY ./app /fx_data_source/app | ||
CMD ["uvicorn", "app.poc_data_source:app", "--host", "0.0.0.0", "--port", "80"] | ||
# NOTE: we might want to change the port-cfg depending on the deployment | ||
# on the individual k8s-clusters (Arno's cluster, Catena cluster, SFH ...) |
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,3 @@ | ||
# fx-ccm-dataspace-poc-business-int-logic | ||
|
||
docker pull fraunhoferiosb/fx-ccm-dataspace-poc-business-int-logic:latest |
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Oops, something went wrong.