BareRTC/Dockerfile

16 lines
237 B
Docker
Raw Normal View History

2025-02-03 07:27:46 +00:00
FROM golang:1.23-alpine AS base
RUN apk add make bash git nodejs npm
WORKDIR /app
COPY go.mod go.sum package.json package-lock.json ./
RUN go mod download
RUN npm install
COPY . ./
RUN npm run build
RUN make build
CMD ["./BareRTC"]