mirror of
https://github.com/lyx0/ollama-twitch-bot.git
synced 2024-11-06 18:52:03 +01:00
19 lines
375 B
Docker
19 lines
375 B
Docker
# Start from golang base image
|
|
FROM golang:alpine
|
|
|
|
# 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 OllamaTwitchBot.out .
|
|
|
|
# Run the executable
|
|
CMD [ "./OllamaTwitchBot.out"]
|