Browse Source

Release++

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

+ 2 - 2
Dockerfile

@@ -2,8 +2,8 @@ FROM debian:latest
 
 ENV FAVE_HOST=0.0.0.0 FAVE_PORT=8080 FAVE_DIR=/app/hosts FAVE_DEBUG=false FAVE_KEEPALIVE=false
 
-ADD https://github.com/vladimirok5959/golang-fave/releases/download/v1.0.1/fave.linux-amd64.tar.gz /app/fave.linux-amd64.tar.gz
-ADD https://github.com/vladimirok5959/golang-fave/releases/download/v1.0.1/localhost.tar.gz /app/hosts/localhost.tar.gz
+ADD https://github.com/vladimirok5959/golang-fave/releases/download/v1.0.2/fave.linux-amd64.tar.gz /app/fave.linux-amd64.tar.gz
+ADD https://github.com/vladimirok5959/golang-fave/releases/download/v1.0.2/localhost.tar.gz /app/hosts/localhost.tar.gz
 
 RUN tar -zxf /app/fave.linux-amd64.tar.gz -C /app && \
  tar -zxf /app/hosts/localhost.tar.gz -C /app/hosts && \

+ 1 - 1
Makefile

@@ -1,4 +1,4 @@
-VERSION="1.0.1"
+VERSION="1.0.2"
 
 default: debug test run
 

+ 1 - 1
consts/consts.go

@@ -4,7 +4,7 @@ import (
 	"html/template"
 )
 
-const ServerVersion = "1.0.1"
+const ServerVersion = "1.0.2"
 const AssetsVersion = "16"
 const AssetsPath = "assets"
 const DirIndexFile = "index.html"