add yarn.lock to Docker to ensure consistent builds! (#621)

This commit is contained in:
Ilya Kreymer 2024-06-20 18:54:05 -07:00 committed by GitHub
parent febf4b7532
commit 3c26996f93
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -21,7 +21,7 @@ WORKDIR /app
ADD requirements.txt /app/
RUN pip install -U setuptools; pip install -r requirements.txt
ADD package.json /app/
ADD package.json yarn.lock /app/
# to allow forcing rebuilds from this stage
ARG REBUILD