mirror of
https://github.com/redlib-org/redlib.git
synced 2025-04-04 21:47:40 +03:00
Update Dockerfile
Try again
This commit is contained in:
parent
4d74e2f94d
commit
03145dc87c
1 changed files with 17 additions and 6 deletions
23
Dockerfile
23
Dockerfile
|
@ -1,20 +1,31 @@
|
|||
FROM alpine:3.19
|
||||
|
||||
ARG TARGET=x86_64-unknown-linux-musl
|
||||
ARG BUILD_DIR=/build
|
||||
|
||||
RUN apk add --no-cache curl tar
|
||||
RUN apk add --no-cache curl build-base cmake
|
||||
|
||||
# Download the latest artifact from the main branch and extract it
|
||||
RUN curl -L "https://github.com/LucifersCircle/redlib/archive/refs/heads/main.tar.gz" | \
|
||||
tar --strip-components=1 -xz -C /usr/local/bin/ redlib-main/target/${TARGET}/redlib
|
||||
# Download the latest source code from the main branch
|
||||
RUN mkdir -p ${BUILD_DIR} && \
|
||||
curl -L "https://github.com/LucifersCircle/redlib/archive/refs/heads/main.tar.gz" | \
|
||||
tar --strip-components=1 -xz -C ${BUILD_DIR}
|
||||
|
||||
# Build the binary
|
||||
WORKDIR ${BUILD_DIR}
|
||||
RUN cmake -DCMAKE_BUILD_TYPE=Release -DTARGET=${TARGET} . && \
|
||||
make
|
||||
|
||||
# Move the compiled binary to /usr/local/bin
|
||||
RUN mv ${BUILD_DIR}/target/${TARGET}/redlib /usr/local/bin/redlib
|
||||
|
||||
# Clean up build dependencies
|
||||
RUN apk del build-base cmake && rm -rf ${BUILD_DIR}
|
||||
|
||||
RUN adduser --home /nonexistent --no-create-home --disabled-password redlib
|
||||
USER redlib
|
||||
|
||||
# Tell Docker to expose port 8080
|
||||
EXPOSE 8080
|
||||
|
||||
# Run a healthcheck every minute to make sure redlib is functional
|
||||
HEALTHCHECK --interval=1m --timeout=3s CMD wget --spider -q http://localhost:8080/settings || exit 1
|
||||
|
||||
CMD ["redlib"]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue