Skip to content
Snippets Groups Projects
Verified Commit 639411f9 authored by ornanovitch's avatar ornanovitch
Browse files

consistancy between readme dev steps & dockerfile

parent a0100808
No related branches found
No related tags found
No related merge requests found
...@@ -2,7 +2,6 @@ ...@@ -2,7 +2,6 @@
*.pyc *.pyc
__pycache__ __pycache__
# For developers # For developers
/package-lock.json
/yarn.lock /yarn.lock
/node_modules /node_modules
/venv /venv
......
...@@ -8,8 +8,8 @@ RUN apt-get update \ ...@@ -8,8 +8,8 @@ RUN apt-get update \
RUN pip install -r /requirements.txt RUN pip install -r /requirements.txt
FROM node:buster AS assets_build FROM node:buster AS assets_build
COPY yarn.lock package.json webpack.config.js / COPY package-lock.json package.json webpack.config.js /
RUN yarn install --pure-lockfile RUN npm ci
COPY assets /assets COPY assets /assets
RUN /node_modules/.bin/webpack-cli RUN /node_modules/.bin/webpack-cli
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment