Created
November 29, 2017 16:33
-
-
Save chartjes/c7c4c1ff03f8a74da49f5e7a952e6eb0 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 | |
CMD pytest --env=$TEST_ENV config-test/ -s |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
ARG SYMFONY_ENV
ENV SYMFONY_ENV $SYMFONY_ENV