Skip to content

Commit

Permalink
refactor: use full node version instead of alpine
Browse files Browse the repository at this point in the history
  • Loading branch information
byCedric committed Apr 2, 2019
1 parent 252f16d commit a019c94
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
8 changes: 4 additions & 4 deletions base/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM node:10-alpine
FROM node:10

LABEL name="Expo CLI for Docker"
LABEL name="Expo for Docker"
LABEL version="2.0.0"
LABEL repository="https://github.com/bycedric/ci-expo"
LABEL homepage="https://github.com/bycedric/ci-expo/tree/master/base"
LABEL maintainer="Cedric van Putten <[email protected]>"

RUN apk add --no-cache bash git \
&& npm install --global expo-cli@2 \
RUN npm install --global expo-cli@2 \
&& npm cache rm --force \
&& rm -rf ~/.npm

Expand Down
1 change: 1 addition & 0 deletions base/entrypoint.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/bin/sh -l

set -e
sh -c "expo $*"

0 comments on commit a019c94

Please sign in to comment.