Skip to content

Commit 71e1891

Browse files
committed
Initial commit
0 parents  commit 71e1891

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.idea

Dockerfile

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
FROM node:9.11.1-alpine
2+
3+
ENV FORMIO_VERSION 1.28.0
4+
5+
RUN apk update \
6+
&& apk add bash git openssh openssl \
7+
&& wget "https://github.com/formio/formio/archive/v$FORMIO_VERSION.tar.gz" \
8+
&& tar -zxvf v$FORMIO_VERSION.tar.gz \
9+
&& mv formio-$FORMIO_VERSION formio \
10+
&& cd formio \
11+
&& apk --no-cache add --virtual native-deps \
12+
g++ gcc libgcc libstdc++ linux-headers make python \
13+
&& npm install --quiet node-gyp -g \
14+
&& npm install --quiet \
15+
&& apk del native-deps

0 commit comments

Comments
 (0)