Fix Dockerfile (#4214)

* Update Dockerfile

* Update Dockerfile
This commit is contained in:
Acid Chicken (硫酸鶏) 2019-02-10 16:14:48 +09:00 committed by GitHub
parent a0769d65e3
commit fac7ebf4f6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -23,15 +23,11 @@ RUN apk add --no-cache \
procps \
python \
zlib-dev
RUN npm i -g node-gyp
COPY ./package.json ./
RUN npm i
RUN npm i -g yarn
COPY . ./
RUN node-gyp configure \
&& node-gyp build \
&& npm run build
RUN yarn install
RUN yarn build
FROM base AS runner