mirror-ollama-twitch-bot/Dockerfile
2024-03-05 18:54:38 +01:00

23 lines
443 B
Docker

# Start from golang base image
FROM golang:alpine
RUN apk add --no-cache make
RUN apk add --no-cache git
RUN apk add --no-cache jq
# Setup folders
RUN mkdir /app
WORKDIR /app
# Copy the source from the current directory to the working Directory inside the container
COPY . .
COPY .env .
# Download all the dependencies
RUN go get -d -v ./...
# Build the Go app
RUN go build -o Nourybot.out .
# Run the executable
CMD [ "./Nourybot.out"]