-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: use full node version instead of alpine
- Loading branch information
Showing
2 changed files
with
5 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
#!/bin/sh -l | ||
|
||
set -e | ||
sh -c "expo $*" |