-
-
Notifications
You must be signed in to change notification settings - Fork 116
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- protocols are separated to packages - observe work's natively (#12, #99) - support's separate message - don't propagate reset message to client(#110) - body as ReadSeeker for easy transfer files - ability to set source port (#90) - (un)marshal udp/tcp coap message without allocation - added support for middleware to mux #73
- Loading branch information
Showing
136 changed files
with
13,015 additions
and
10,269 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,11 @@ | ||
FROM golang:1.13.5-alpine3.10 AS build | ||
RUN apk add --no-cache curl git build-base | ||
WORKDIR $GOPATH/src/github.com/go-ocf/go-coap | ||
FROM ubuntu:20.04 AS build | ||
RUN apt-get update \ | ||
&& apt-get install -y gcc make git curl file | ||
RUN git clone https://github.com/udhos/update-golang.git \ | ||
&& cd update-golang \ | ||
&& ./update-golang.sh \ | ||
&& ln -s /usr/local/go/bin/go /usr/bin/go | ||
WORKDIR $GOPATH/src/github.com/go-ocf/cloud | ||
COPY go.mod go.sum ./ | ||
RUN go mod download | ||
COPY . . | ||
|
||
COPY . . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.