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 @@
*.pyc
__pycache__
# For developers
/package-lock.json
/yarn.lock
/node_modules
/venv
......
......@@ -8,8 +8,8 @@ RUN apt-get update \
RUN pip install -r /requirements.txt
FROM node:buster AS assets_build
COPY yarn.lock package.json webpack.config.js /
RUN yarn install --pure-lockfile
COPY package-lock.json package.json webpack.config.js /
RUN npm ci
COPY assets /assets
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