Forked from chartjes/gist:c7c4c1ff03f8a74da49f5e7a952e6eb0
Last active
November 29, 2017 16:51
-
-
Save nicholasruunu/5e101ff8990bc3fcf124f030621603f7 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
FROM frolvlad/alpine-python3 | |
RUN apk add --update make gcc git python3-dev musl-dev libffi-dev openssl-dev py-pip | |
RUN pip install -r requirements.txt | |
COPY . /app | |
WORKDIR /app | |
ENTRYPOINT pytest config-test/ -s --env= | |
// Run with | |
// docker run <container> $TEST_ENV |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment