Browse Source

Version++

Vova Tkach 6 years ago
parent
commit
38da92494c
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.3/fave.linux-amd64.tar.gz /app/fave.linux-amd64.tar.gz
-ADD https://github.com/vladimirok5959/golang-fave/releases/download/v1.0.3/localhost.tar.gz /app/hosts/localhost.tar.gz
+ADD https://github.com/vladimirok5959/golang-fave/releases/download/v1.0.4/fave.linux-amd64.tar.gz /app/fave.linux-amd64.tar.gz
+ADD https://github.com/vladimirok5959/golang-fave/releases/download/v1.0.4/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.3"
+VERSION="1.0.4"
 
 default: debug test run
 

+ 1 - 1
consts/consts.go

@@ -4,7 +4,7 @@ import (
 	"html/template"
 )
 
-const ServerVersion = "1.0.3"
+const ServerVersion = "1.0.4"
 const AssetsVersion = "19"
 const AssetsPath = "assets"
 const DirIndexFile = "index.html"