We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
0 parents commit 71e1891Copy full SHA for 71e1891
.gitignore
@@ -0,0 +1 @@
1
+.idea
Dockerfile
@@ -0,0 +1,15 @@
+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