Thanks to visit codestin.com
Credit goes to github.com

Skip to content

PR: Add pandaSDMX #126

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 6 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions k8/images/pandasdmx/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# syntax = docker/dockerfile:1.1.7-experimental
ARG FROM
FROM ${FROM}

WORKDIR /usr/src/app

# Instructions taken from:
# https://github.com/dr-leo/pandaSDMX/blob/master/.travis.yml
RUN git clone \
--branch 1.0.0 \
--depth 1 \
https://github.com/dr-leo/pandaSDMX.git \
.

RUN --mount=type=cache,target=/root/.cache/pip \
pip install -r requirements.txt \
pip install . \
requests-mock \
pytest-custom_exit_code

RUN python -c "import pandasdmx"

ENV PYTHON_RECORD_API_FROM_MODULES=pandasdmx
CMD [ "pytest", "-ra", "--verbose", "--suppress-tests-failed-exit-code", "-m", "not experimental"]
1 change: 1 addition & 0 deletions k8/images/pandasdmx/version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
1.1.2