remove docker stuff.

This commit is contained in:
fiatjaf 2024-02-03 11:30:54 -03:00
parent 0fe69c9fdb
commit 2630d9e2ca
No known key found for this signature in database
GPG Key ID: BAD43C4BE5C1A3A1
2 changed files with 0 additions and 31 deletions

View File

@ -1,16 +0,0 @@
# syntax=docker/dockerfile:1
FROM golang:1.21
WORKDIR /app
COPY go.mod go.sum ./
RUN go mod download
COPY . .
RUN CGO_ENABLED=0 GOOS=linux go build -o /khatru-invite
EXPOSE 3334
CMD ["/khatru-invite"]

View File

@ -1,15 +0,0 @@
version: '3'
services:
khatru-invite:
restart: unless-stopped
build:
context: .
dockerfile: Dockerfile
ports:
- 3334:3334
volumes:
- ./users.json:/app/users.json
- ./db:/app/db
env_file:
- .env