Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion correctedforecaster/build/package/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ COPY go.sum /src/go.sum
WORKDIR /src
RUN go mod download

COPY internal/ /src/internal/
COPY internalprotocol /src/internalprotocol
COPY parameters/ /src/parameters/
COPY correctedforecaster/internal/ /src/correctedforecaster/internal/

RUN go test ./...
Expand Down
2 changes: 1 addition & 1 deletion correctedforecaster/internal/server/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import (
"github.com/metno/forti/correctedforecaster/internal/health"
"github.com/metno/forti/correctedforecaster/internal/lookup"
"github.com/metno/forti/internalprotocol"
"github.com/metno/forti/parameters/radar"
"github.com/metno/forti/internal/radar"
)

func Run(upstream string, port int, topographyFiles []string) error {
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion jsonfrontend/build/package/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ WORKDIR /src
RUN go mod download

COPY internalprotocol /src/internalprotocol
COPY parameters/ /src/parameters/
COPY internal/ /src/internal/
COPY jsonfrontend/internal /src/jsonfrontend/internal
COPY jsonfrontend/pkg /src/jsonfrontend/pkg

Expand Down
2 changes: 1 addition & 1 deletion jsonfrontend/internal/server/encode/encode.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"github.com/metno/forti/internalprotocol"
"github.com/metno/forti/jsonfrontend/internal/server/config"
"github.com/metno/forti/jsonfrontend/pkg/jsonformat"
"github.com/metno/forti/parameters/radar"
"github.com/metno/forti/internal/radar"
"github.com/metno/go-weathersymbol"
)

Expand Down
2 changes: 1 addition & 1 deletion xmlfrontend/build/package/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ WORKDIR /src
RUN go mod download

COPY internalprotocol /src/internalprotocol
COPY parameters/ /src/parameters/
COPY internal/ /src/internal/
COPY xmlfrontend/internal /src/xmlfrontend/internal
COPY xmlfrontend/pkg /src/xmlfrontend/pkg

Expand Down
2 changes: 1 addition & 1 deletion xmlfrontend/internal/server/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
"time"

"github.com/metno/forti/internalprotocol"
"github.com/metno/forti/parameters/radar"
"github.com/metno/forti/internal/radar"
"github.com/metno/forti/xmlfrontend/internal/server/config"
"github.com/metno/forti/xmlfrontend/internal/server/encode"
"github.com/metno/forti/xmlfrontend/pkg/xmlformat"
Expand Down
Loading