Skip to content

Instantly share code, notes, and snippets.

@chartjes
Created November 29, 2017 16:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save chartjes/c7c4c1ff03f8a74da49f5e7a952e6eb0 to your computer and use it in GitHub Desktop.
Save chartjes/c7c4c1ff03f8a74da49f5e7a952e6eb0 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
CMD pytest --env=$TEST_ENV config-test/ -s
@mablae
Copy link

mablae commented Nov 29, 2017

ARG SYMFONY_ENV
ENV SYMFONY_ENV $SYMFONY_ENV

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment