diff --git a/Dockerfile b/Dockerfile index 66e722f..bd8eee7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,6 @@ FROM python:3.10 WORKDIR /code COPY ./requirements.txt /code/requirements.txt RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt -RUN python -m pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple python-osw-validation==0.0.3 COPY ./src /code/src EXPOSE 8080 CMD ["uvicorn", "src.main:app", "--reload", "--host", "0.0.0.0", "--port", "8080"] diff --git a/README.md b/README.md index d219c7d..c16d192 100644 --- a/README.md +++ b/README.md @@ -46,8 +46,6 @@ Follow the steps to install the python packages required for both building and r ``` # Installing requirements pip install -r requirements.txt - # Installing python-osw-validation package - pip install -i https://test.pypi.org/simple/ python-osw-validation==0.0.3 ``` ### How to Run the Server/APIs diff --git a/requirements.txt b/requirements.txt index 0a4a23a..42a0c07 100644 --- a/requirements.txt +++ b/requirements.txt @@ -7,6 +7,4 @@ uvicorn==0.20.0 coverage==7.2.7 html_testRunner==1.2.1 httpx==0.24.1 - -jsonschema==4.19.1 -zipfile36==0.1.3 \ No newline at end of file +python-osw-validation==0.0.3 \ No newline at end of file