Fixing package structure

This commit is contained in:
Denis-Cosmin Nutiu 2018-01-01 16:57:11 +02:00
parent 87c8409be3
commit b97f8cc567
12 changed files with 7 additions and 10 deletions

View file

@ -2,23 +2,20 @@
FROM golang:1.7 FROM golang:1.7
# Make a directory called simplFT # Make a directory called simplFT
RUN mkdir -p /go/src/github.com/metonimie/simplFT/server RUN mkdir -p /go/src/github.com/metonimie/simplFT/
# Copy the current dir contents into simplFT # Copy the current dir contents into simplFT
ADD . /go/src/github.com/metonimie/simplFT/server ADD . /go/src/github.com/metonimie/simplFT/
# Set the working directory to simplFT # Set the working directory to simplFT
WORKDIR /go/src/github.com/metonimie/simplFT/server WORKDIR /go/src/github.com/metonimie/simplFT/
# Make port 80 available to the world outside this container
EXPOSE 8080
# Install dependencies # Install dependencies
RUN go get "github.com/zyxar/image2ascii/ascii" RUN go get "github.com/zyxar/image2ascii/ascii"
RUN go get "github.com/spf13/viper" RUN go get "github.com/spf13/viper"
# Build the application # Build the application
RUN go build ./simplFTP.go RUN go build ./main.go
# Run simplFT when the container launches # Run simplFT when the container launches
CMD ["./simplFTP", "-config-name", "docker-config"] CMD ["./main", "-config-name", "docker-config"]

View file

@ -6,7 +6,7 @@ import (
"log" "log"
"sync" "sync"
"github.com/metonimie/simplFT/server/server" "github.com/metonimie/simplFT/server"
) )
func main() { func main() {

View file

@ -17,7 +17,7 @@ import (
"sync" "sync"
"github.com/fsnotify/fsnotify" "github.com/fsnotify/fsnotify"
"github.com/metonimie/simplFT/server/server/config" "github.com/metonimie/simplFT/server/config"
"github.com/spf13/viper" "github.com/spf13/viper"
) )