Browse Source

Versions++

Vova Tkach 5 years ago
parent
commit
2ccde7bdbb
4 changed files with 5 additions and 5 deletions
  1. 2 2
      Dockerfile
  2. 1 1
      Makefile
  3. 1 1
      consts/consts.go
  4. 1 1
      consts/consts_version.go

+ 2 - 2
Dockerfile

@@ -3,8 +3,8 @@ MAINTAINER Vova Tkach <vladimirok5959@gmail.com>
 
 
 ENV FAVE_HOST=0.0.0.0 FAVE_PORT=8080 FAVE_DIR=/app/hosts FAVE_DEBUG=false FAVE_KEEPALIVE=true
 ENV FAVE_HOST=0.0.0.0 FAVE_PORT=8080 FAVE_DIR=/app/hosts FAVE_DEBUG=false FAVE_KEEPALIVE=true
 
 
-ADD https://github.com/vladimirok5959/golang-fave/releases/download/v1.1.5/fave.linux-amd64.tar.gz /app/fave.linux-amd64.tar.gz
-ADD https://github.com/vladimirok5959/golang-fave/releases/download/v1.1.5/localhost.tar.gz /app/hosts/localhost.tar.gz
+ADD https://github.com/vladimirok5959/golang-fave/releases/download/v1.1.6/fave.linux-amd64.tar.gz /app/fave.linux-amd64.tar.gz
+ADD https://github.com/vladimirok5959/golang-fave/releases/download/v1.1.6/localhost.tar.gz /app/hosts/localhost.tar.gz
 
 
 RUN tar -zxf /app/fave.linux-amd64.tar.gz -C /app && \
 RUN tar -zxf /app/fave.linux-amd64.tar.gz -C /app && \
  tar -zxf /app/hosts/localhost.tar.gz -C /app/hosts && \
  tar -zxf /app/hosts/localhost.tar.gz -C /app/hosts && \

+ 1 - 1
Makefile

@@ -1,4 +1,4 @@
-VERSION="1.1.5"
+VERSION="1.1.6"
 
 
 default: debug test run
 default: debug test run
 
 

+ 1 - 1
consts/consts.go

@@ -5,7 +5,7 @@ import (
 )
 )
 
 
 const AssetsPath = "assets"
 const AssetsPath = "assets"
-const AssetsVersion = "37"
+const AssetsVersion = "38"
 const DirIndexFile = "index.html"
 const DirIndexFile = "index.html"
 
 
 // Bootstrap resources
 // Bootstrap resources

+ 1 - 1
consts/consts_version.go

@@ -1,3 +1,3 @@
 package consts
 package consts
 
 
-const ServerVersion = "1.1.5"
+const ServerVersion = "1.1.6"