Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save nicholasruunu/5e101ff8990bc3fcf124f030621603f7 to your computer and use it in GitHub Desktop.
Save nicholasruunu/5e101ff8990bc3fcf124f030621603f7 to your computer and use it in GitHub Desktop.
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