Files
open-im-server/Dockerfile
T

50 lines
1.6 KiB
Docker
Raw Normal View History

# Use Go 1.22 Alpine as the base image for building the application
FROM golang:1.22-alpine AS builder
2024-04-24 12:11:24 +08:00
# Define the base directory for the application as an environment variable
ENV SERVER_DIR=/openim-server
2024-03-09 13:52:07 +08:00
2024-04-24 12:11:24 +08:00
# Set the working directory inside the container based on the environment variable
WORKDIR $SERVER_DIR
2023-06-30 18:59:56 +08:00
2024-04-24 12:11:24 +08:00
# Set the Go proxy to improve dependency resolution speed
ENV GOPROXY=https://goproxy.io,direct
2024-04-24 12:11:24 +08:00
# Copy all files from the current directory into the container
COPY . .
2024-04-24 12:11:24 +08:00
RUN go mod download
2023-06-30 18:59:56 +08:00
2024-04-24 12:11:24 +08:00
# Install Mage to use for building the application
RUN go install github.com/magefile/mage@v1.15.0
2023-06-30 18:59:56 +08:00
2024-04-24 12:11:24 +08:00
# Optionally build your application if needed
RUN mage build
2023-06-30 18:59:56 +08:00
2024-04-24 12:11:24 +08:00
# Using Alpine Linux with Go environment for the final image
FROM golang:1.22-alpine
2023-06-30 18:59:56 +08:00
2024-04-24 12:11:24 +08:00
# Install necessary packages, such as bash
RUN apk add --no-cache bash
2023-06-30 18:59:56 +08:00
2024-04-24 12:11:24 +08:00
# Set the environment and work directory
ENV SERVER_DIR=/openim-server
WORKDIR $SERVER_DIR
# Copy the compiled binaries and mage from the builder image to the final image
COPY --from=builder $SERVER_DIR/_output $SERVER_DIR/_output
COPY --from=builder $SERVER_DIR/config $SERVER_DIR/config
COPY --from=builder /go/bin/mage /usr/local/bin/mage
COPY --from=builder $SERVER_DIR/magefile_windows.go $SERVER_DIR/
COPY --from=builder $SERVER_DIR/magefile_unix.go $SERVER_DIR/
COPY --from=builder $SERVER_DIR/magefile.go $SERVER_DIR/
COPY --from=builder $SERVER_DIR/start-config.yml $SERVER_DIR/
COPY --from=builder $SERVER_DIR/go.mod $SERVER_DIR/
COPY --from=builder $SERVER_DIR/go.sum $SERVER_DIR/
2024-07-03 14:27:16 +08:00
RUN go get github.com/openimsdk/gomake@v0.0.14-alpha.5
2024-04-24 12:11:24 +08:00
# Set the command to run when the container starts
ENTRYPOINT ["sh", "-c", "mage start && tail -f /dev/null"]