mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-11-06 13:22:11 +08:00
refactor
This commit is contained in:
parent
4a36a012ed
commit
19b8824d20
29
Dockerfile
29
Dockerfile
@ -1,5 +1,5 @@
|
|||||||
# Use Go 1.21 as the base image for building the application
|
# Use Go 1.21 Alpine as the base image for building the application
|
||||||
FROM golang:1.21 as builder
|
FROM golang:1.21-alpine as builder
|
||||||
|
|
||||||
# Define the base directory for the application as an environment variable
|
# Define the base directory for the application as an environment variable
|
||||||
ENV SERVER_DIR=/openim-server
|
ENV SERVER_DIR=/openim-server
|
||||||
@ -15,37 +15,32 @@ COPY . .
|
|||||||
|
|
||||||
RUN go mod download
|
RUN go mod download
|
||||||
|
|
||||||
|
|
||||||
# Install Mage to use for building the application
|
# Install Mage to use for building the application
|
||||||
RUN go install github.com/magefile/mage@latest
|
RUN go install github.com/magefile/mage@latest
|
||||||
|
|
||||||
# Uncomment and ensure your build command is correctly specified
|
# Optionally build your application if needed
|
||||||
#RUN mage build
|
RUN mage build
|
||||||
|
|
||||||
|
# Using Alpine Linux with Go environment for the final image
|
||||||
|
FROM golang:1.21-alpine
|
||||||
|
|
||||||
# Use Alpine Linux as the final base image due to its small size and included utilities
|
# Install necessary packages, such as bash
|
||||||
FROM alpine:latest
|
|
||||||
|
|
||||||
# Install necessary packages, such as bash, to ensure compatibility and functionality
|
|
||||||
RUN apk add --no-cache bash
|
RUN apk add --no-cache bash
|
||||||
|
|
||||||
|
# Set the environment and work directory
|
||||||
ENV SERVER_DIR=/openim-server
|
ENV SERVER_DIR=/openim-server
|
||||||
|
|
||||||
# Set the working directory inside the container based on the environment variable
|
|
||||||
WORKDIR $SERVER_DIR
|
WORKDIR $SERVER_DIR
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Copy the compiled binaries and mage from the builder image to the final image
|
# 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/_output $SERVER_DIR/
|
COPY --from=builder $SERVER_DIR/config $SERVER_DIR/config
|
||||||
COPY --from=builder $SERVER_DIR/config $SERVER_DIR/
|
|
||||||
COPY --from=builder /go/bin/mage /usr/local/bin/mage
|
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_windows.go $SERVER_DIR/
|
||||||
COPY --from=builder $SERVER_DIR/magefile_unix.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/magefile.go $SERVER_DIR/
|
||||||
COPY --from=builder $SERVER_DIR/start-config.yml $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/
|
||||||
|
|
||||||
# Set up volume mounts for the configuration directory and logs directory
|
# Set up volume mounts for the configuration directory and logs directory
|
||||||
VOLUME ["$SERVER_DIR/config", "$SERVER_DIR/_output/logs"]
|
VOLUME ["$SERVER_DIR/config", "$SERVER_DIR/_output/logs"]
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user