forked from Place1/wg-access-server
-
-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
def4179
commit 1d848c4
Showing
6 changed files
with
482 additions
and
495 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
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,4 +1,4 @@ | ||
FROM node:22.3.0-bookworm as proto-js | ||
FROM node:22.5.1-bookworm as proto-js | ||
RUN apt-get update && apt-get install -y protobuf-compiler libprotobuf-dev | ||
WORKDIR /code | ||
COPY ./website/package.json ./ | ||
|
@@ -8,7 +8,7 @@ RUN npm ci --no-audit --prefer-offline | |
# Mount ./website/src/sdk to /code/src/sdk | ||
CMD ["npm", "run", "codegen"] | ||
|
||
FROM golang:1.22.4-alpine as proto-go | ||
FROM golang:1.22.5-alpine as proto-go | ||
RUN apk add --no-cache protobuf protobuf-dev | ||
WORKDIR /code | ||
RUN go install google.golang.org/grpc/cmd/[email protected] | ||
|
Oops, something went wrong.