forked from transloadit/uppy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
companion: install git so we can fetch tus-js-client fork (transloadi…
- Loading branch information
1 parent
5d14d01
commit c0d08da
Showing
2 changed files
with
5 additions
and
5 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
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,18 +1,18 @@ | ||
FROM alpine:3.6 | ||
|
||
RUN apk add --update nodejs \ | ||
nodejs-npm | ||
nodejs-npm | ||
|
||
COPY package.json /app/package.json | ||
|
||
WORKDIR /app | ||
|
||
RUN apk --update add --virtual native-dep \ | ||
make gcc g++ python libgcc libstdc++ && \ | ||
make gcc g++ python libgcc libstdc++ git && \ | ||
npm install && \ | ||
apk del native-dep | ||
RUN apk add bash | ||
|
||
COPY . /app | ||
RUN npm install -g nodemon | ||
CMD ["npm","test"] | ||
CMD ["npm","test"] |