Merge pull request #27 from tilosp/master

Fix docker build
This commit is contained in:
Robin Appelman 2022-04-20 11:46:17 +00:00 committed by GitHub
commit 743b063402
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,9 +1,9 @@
FROM node:alpine AS builder FROM node:14-alpine AS builder
WORKDIR /opt/mx-puppet-steam WORKDIR /opt/mx-puppet-steam
RUN apk add --no-cache \ RUN apk add --no-cache \
python \ python3 \
g++ \ g++ \
build-base \ build-base \
cairo-dev \ cairo-dev \
@ -30,7 +30,7 @@ RUN npm run build
RUN rm -r node_modules/typescript RUN rm -r node_modules/typescript
FROM node:alpine FROM node:14-alpine
VOLUME /data VOLUME /data