We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25d002e commit a8dee26Copy full SHA for a8dee26
.travis.yml
@@ -10,8 +10,7 @@ branches:
10
- /^v[0-9.]+$/
11
12
go:
13
- - 1.10.x
14
- - 1.x
+ - 1.11.x
15
- tip
16
17
go_import_path: aahframe.work
Dockerfile.edge
@@ -9,8 +9,14 @@ RUN apt-get update
9
RUN rm -rf $GOPATH/src
-RUN go get aahframe.work/cmd/aah
+RUN go get aahframe.work/cli/aah
RUN aah -v
+# Fetching addon and extensions aah libraries
+RUN go get aahframe.work/minify/html && \
18
+ go get aahframe.work/cache/provider/inmemory && \
19
+ go get aahframe.work/cache/provider/memcache && \
20
+ go get aahframe.work/cache/provider/redis
21
+
22
WORKDIR $GOPATH/src
0 commit comments