Local develop setup with docker (#1103)
* Add local live kit backend run setup
This commit is contained in:
parent
4dcd1e176f
commit
0192ed70ea
10 changed files with 341 additions and 1 deletions
15
backend/auth/Dockerfile
Normal file
15
backend/auth/Dockerfile
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
FROM golang:1.20-alpine
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY go.mod ./
|
||||
COPY go.sum ./
|
||||
RUN go mod download
|
||||
|
||||
COPY *.go ./
|
||||
|
||||
RUN go build -o /auth-server
|
||||
|
||||
EXPOSE 8080
|
||||
|
||||
CMD [ "/auth-server" ]
|
||||
Loading…
Add table
Add a link
Reference in a new issue