File tree Expand file tree Collapse file tree 4 files changed +5
-6
lines changed Expand file tree Collapse file tree 4 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 29
29
* .egg
30
30
/cache
31
31
newrelic-layer.zip
32
- smoketest.sh
33
- smoketest-prod.sh
32
+ smoketest * .sh
34
33
35
34
# PyInstaller
36
35
# Usually these files are written by a python script from a template
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ WORKDIR /app
14
14
15
15
# Install poetry and isolate it in it's own venv
16
16
RUN python -m venv ${POETRY_HOME} \
17
- && ${POETRY_HOME}/bin/pip3 install poetry==${POETRY_VERSION}
17
+ && ${POETRY_HOME}/bin/pip3 install poetry==${POETRY_VERSION} virtualenv==20.30.0
18
18
19
19
COPY pyproject.toml poetry.lock /app/
20
20
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ WORKDIR ${TASK_ROOT}
17
17
18
18
# Install poetry and isolate it in it's own venv
19
19
RUN python -m venv ${POETRY_HOME} \
20
- && ${POETRY_HOME}/bin/pip3 install poetry==${POETRY_VERSION}
20
+ && ${POETRY_HOME}/bin/pip3 install poetry==${POETRY_VERSION} virtualenv==20.30.0
21
21
22
22
COPY pyproject.toml poetry.lock ${TASK_ROOT}/
23
23
Original file line number Diff line number Diff line change @@ -15,9 +15,9 @@ RUN apk add --no-cache bash build-base git gcc musl-dev postgresql-dev g++ make
15
15
RUN set -ex && mkdir /app
16
16
WORKDIR /app
17
17
18
- # Install Poetry and isolate it from the project
18
+ # Install poetry and isolate it in it's own venv
19
19
RUN python -m venv ${POETRY_HOME} \
20
- && ${POETRY_HOME}/bin/pip3 install poetry==${POETRY_VERSION}
20
+ && ${POETRY_HOME}/bin/pip3 install poetry==${POETRY_VERSION} virtualenv==20.30.0
21
21
22
22
COPY . /app/
23
23
You can’t perform that action at this time.
0 commit comments