Browse Source

cloudron build does not use sqlite

Girish Ramakrishnan 10 years ago
parent
commit
adbbfba7c3
2 changed files with 5 additions and 3 deletions
  1. 3 3
      Dockerfile
  2. 2 0
      start.sh

+ 3 - 3
Dockerfile

@@ -7,15 +7,15 @@ RUN apt-get update && \
 ADD supervisor/ /etc/supervisor/conf.d/
 
 ENV GOPATH /home/cloudron
-RUN mkdir -p /home/cloudron/gogs/log
+RUN mkdir -p /home/cloudron/gogs/
 
 ## TODO: use redis as well
 RUN mkdir -p ${GOPATH}/src/github.com/gogits && \
     cd ${GOPATH}/src/github.com/gogits && \
     git clone https://github.com/cloudron-io/gogs.git && \
     cd gogs && \
-    go get -u -tags "sqlite" && \
-    go build -tags "sqlite" && \
+    go get ./... && \
+    go build && \
     go install && \
     mv ${GOPATH}/bin/gogs /home/cloudron/gogs/
 

+ 2 - 0
start.sh

@@ -5,6 +5,8 @@ set -eu -o pipefail
 fqdn=$(hostname -f)
 
 chown -R cloudron.cloudron /app/data
+mkdir -p /home/cloudron/gogs/log
+chown cloudron:cloudron /home/cloudron/gogs/log
 
 # Dockerfile changes the ownership of this file to make it writable by cloudron user
 sed -e "s/^Port .*/Port ${SSH_PORT}/" \