Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
dkcwd committed Apr 30, 2018
0 parents commit 71e1891
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.idea
15 changes: 15 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
FROM node:9.11.1-alpine

ENV FORMIO_VERSION 1.28.0

RUN apk update \
&& apk add bash git openssh openssl \
&& wget "https://github.com/formio/formio/archive/v$FORMIO_VERSION.tar.gz" \
&& tar -zxvf v$FORMIO_VERSION.tar.gz \
&& mv formio-$FORMIO_VERSION formio \
&& cd formio \
&& apk --no-cache add --virtual native-deps \
g++ gcc libgcc libstdc++ linux-headers make python \
&& npm install --quiet node-gyp -g \
&& npm install --quiet \
&& apk del native-deps

0 comments on commit 71e1891

Please sign in to comment.