Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/reaby/infoscreen3
Browse files Browse the repository at this point in the history
  • Loading branch information
reaby committed May 23, 2022
2 parents 04af038 + 147c113 commit a8bfcef
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 13 deletions.
7 changes: 5 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
# Nice fresh and new base
FROM node:10-alpine
FROM node:current-alpine

# Create directory for our app
WORKDIR /usr/src/infoscreen

# Install app dependencies
COPY package*.json ./
RUN npm install
RUN apk add --no-cache --virtual .gyp python3 make g++ \
&& ln -s /usr/bin/python3 /usr/bin/python \
&& npm install \
&& apk del .gyp

# Bundle app source
COPY . .
Expand Down
21 changes: 10 additions & 11 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit a8bfcef

Please sign in to comment.