Skip to content

Commit 8b9b30b

Browse files
authored
Only test locked dependencies in CI/deployment (#180)
* Only install locked deps in CI/deployment * Use yarn install with frozen lockfile
1 parent f484f1b commit 8b9b30b

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

.docker/app_dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ RUN npm install -g serve
1111
COPY webapp/package.json webapp/yarn.lock ./
1212

1313
# Using a custom node_modules location to avoid mounting it outside of docker
14-
RUN --mount=type=cache,target=/root/.cache/yarn yarn install --modules-folder /node_modules
14+
RUN --mount=type=cache,target=/root/.cache/yarn yarn install --frozen-lockfile --modules-folder /node_modules
1515

1616
FROM base as development
1717
ENV PATH $PATH:/node_modules/.bin

.docker/server_dockerfile

+2-3
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,14 @@ COPY pydatalab/Pipfile pydatalab/Pipfile.lock ./
1212

1313
# Create development image using flask's dev server with hot-reload
1414
FROM base as development
15-
RUN --mount=type=cache,target=/root/.cache/pip pipenv install
16-
RUN --mount=type=cache,target=/root/.cache/pip pipenv install --dev
15+
RUN --mount=type=cache,target=/root/.cache/pip pipenv sync
1716
ENV FLASK_APP "pydatalab.main:create_app()"
1817
ENV FLASK_ENV "development"
1918
CMD ["pipenv", "run", "flask", "run", "--port", "5001", "--host", "0.0.0.0"]
2019

2120
# Create production image using gunicorn and minimal dependencies
2221
FROM base as production
23-
RUN --mount=type=cache,target=/root/.cache/pip pipenv install
22+
RUN --mount=type=cache,target=/root/.cache/pip pipenv sync
2423
RUN [ "pipenv", "run", "pip", "install", "gunicorn" ]
2524
COPY ./pydatalab/ ./
2625

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
python -m pip install --upgrade pip
6969
pip install -U setuptools
7070
pip install pipenv
71-
pipenv install --dev
71+
pipenv sync --dev
7272
pipenv run pip install -e .
7373
pipenv graph
7474
@@ -97,7 +97,7 @@ jobs:
9797

9898
- name: Install web app
9999
working-directory: ./webapp
100-
run: yarn install
100+
run: yarn install --frozen-lockfile
101101

102102
- name: Unit and Component test web app
103103
working-directory: ./webapp

0 commit comments

Comments
 (0)