mirror of
https://github.com/lyx0/nourybot.git
synced 2024-11-13 19:49:55 +01:00
21 lines
397 B
Docker
21 lines
397 B
Docker
|
# Start from golang base image
|
||
|
FROM golang:alpine
|
||
|
|
||
|
RUN apk add --no-cache make
|
||
|
# 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 ./cmd/nourybot
|
||
|
|
||
|
# Run the executable
|
||
|
CMD [ "./nourybot", "env='prod'" ]
|