mirror of
https://github.com/tencentmusic/supersonic.git
synced 2025-12-10 19:51:00 +00:00
30 lines
1.2 KiB
Docker
30 lines
1.2 KiB
Docker
FROM supersonicbi/supersonic:0.9.10-SNAPSHOT
|
|
|
|
# Set the working directory in the container
|
|
WORKDIR /usr/src/app
|
|
|
|
# Delete old supersonic installation directory and the symbolic link
|
|
RUN rm -rf /usr/src/app/supersonic-standalone-0.9.10-SNAPSHOT
|
|
RUN rm -f /usr/src/app/supersonic-standalone-latest
|
|
|
|
# Argument to pass in the supersonic version at build time
|
|
ARG SUPERSONIC_VERSION
|
|
|
|
# Copy the supersonic standalone zip file into the container
|
|
COPY assembly/build/supersonic-standalone-${SUPERSONIC_VERSION}.zip .
|
|
|
|
# Unzip the supersonic standalone zip
|
|
RUN unzip supersonic-standalone-${SUPERSONIC_VERSION}.zip && \
|
|
rm supersonic-standalone-${SUPERSONIC_VERSION}.zip
|
|
|
|
# Create a symbolic link to the supersonic installation directory
|
|
RUN ln -s /usr/src/app/supersonic-standalone-${SUPERSONIC_VERSION} /usr/src/app/supersonic-standalone-latest
|
|
|
|
# Set the working directory to the supersonic installation directory
|
|
WORKDIR /usr/src/app/supersonic-standalone-${SUPERSONIC_VERSION}
|
|
|
|
# Expose the default port
|
|
EXPOSE 9080
|
|
# Command to run the supersonic daemon
|
|
RUN chmod +x bin/supersonic-daemon.sh
|
|
CMD ["bash", "-c", "bin/supersonic-daemon.sh restart standalone ${S2_DB_TYPE} && tail -f /dev/null"] |