Add configuration files, database migrations, and authentication implementation scaffolding
This commit is contained in:
12
deployments/docker/Dashboard.Dockerfile
Normal file
12
deployments/docker/Dashboard.Dockerfile
Normal file
@@ -0,0 +1,12 @@
|
||||
FROM node:20-alpine
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY package*.json ./
|
||||
RUN npm install
|
||||
|
||||
COPY . .
|
||||
|
||||
EXPOSE 5173
|
||||
|
||||
CMD ["npm", "run", "dev", "--", "--host"]
|
||||
10
deployments/docker/DiscordBot.Dockerfile
Normal file
10
deployments/docker/DiscordBot.Dockerfile
Normal file
@@ -0,0 +1,10 @@
|
||||
FROM golang:1.26-alpine
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
RUN go install github.com/air-verse/air@latest
|
||||
|
||||
COPY go.mod go.sum ./
|
||||
RUN go mod download
|
||||
|
||||
CMD ["air", "-c", ".air.discord.toml"]
|
||||
10
deployments/docker/Gateway.Dockerfile
Normal file
10
deployments/docker/Gateway.Dockerfile
Normal file
@@ -0,0 +1,10 @@
|
||||
FROM golang:1.26-alpine
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
RUN go install github.com/air-verse/air@latest
|
||||
|
||||
COPY go.mod go.sum ./
|
||||
RUN go mod download
|
||||
|
||||
CMD ["air", "-c", ".air.gateway.toml"]
|
||||
10
deployments/docker/Storage.Dockerfile
Normal file
10
deployments/docker/Storage.Dockerfile
Normal file
@@ -0,0 +1,10 @@
|
||||
FROM golang:1.26-alpine
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
RUN go install github.com/air-verse/air@latest
|
||||
|
||||
COPY go.mod go.sum ./
|
||||
RUN go mod download
|
||||
|
||||
CMD ["air", "-c", ".air.storage.toml"]
|
||||
10
deployments/docker/Worker.Dockerfile
Normal file
10
deployments/docker/Worker.Dockerfile
Normal file
@@ -0,0 +1,10 @@
|
||||
FROM golang:1.26-alpine
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
RUN go install github.com/air-verse/air@latest
|
||||
|
||||
COPY go.mod go.sum ./
|
||||
RUN go mod download
|
||||
|
||||
CMD ["air", "-c", ".air.worker.toml"]
|
||||
Reference in New Issue
Block a user