ソースを参照

removed obsolete rules

Peter Oostenbach 10 年 前
コミット
ed4342a04b
1 ファイル変更0 行追加3 行削除
  1. 0 3
      Dockerfile-go-server

+ 0 - 3
Dockerfile-go-server

@@ -2,8 +2,6 @@
 # and a workspace (GOPATH) configured at /go.
 FROM buildpack-deps:jessie-scm
 
-ENV HOST_UID=$UID HOST_GID=$GID
-
 # Copy the local package files to the container's workspace.
 ADD bin/battlecamp-go-server /go/bin/battlecamp-go-server
 
@@ -12,7 +10,6 @@ ADD bin/battlecamp-go-server /go/bin/battlecamp-go-server
 # either manually or with a tool like "godep".)
 # RUN go install battlecamp-go-server
 
-#RUN ["chown","-R","$HOST_UID:$HOST_GID","/go/bin/battlecamp-go-server"]
 RUN ["chmod", "755", "/go/bin/battlecamp-go-server"]
 
 # Run the battlecamp-go-server command by default when the container starts.