Skip to content
Snippets Groups Projects
Commit 39405556 authored by kaiyou's avatar kaiyou
Browse files

Fix the Docker build

parent 115512f2
No related branches found
No related tags found
No related merge requests found
...@@ -8,8 +8,9 @@ RUN apk add --no-cache build-base git \ ...@@ -8,8 +8,9 @@ RUN apk add --no-cache build-base git \
&& pip install -r /requirements.txt && pip install -r /requirements.txt
FROM node:alpine AS assets_build FROM node:alpine AS assets_build
COPY package.json webpack.config.js / RUN apk add --no-cache python make g++
RUN npm install COPY yarn.lock package.json webpack.config.js /
RUN yarn install --pure-lockfile
COPY assets /assets COPY assets /assets
RUN /node_modules/.bin/webpack-cli RUN /node_modules/.bin/webpack-cli
......
yarn.lock 0 → 100644
This diff is collapsed.
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