mirror of
https://github.com/versia-pub/server.git
synced 2025-12-06 08:28:19 +01:00
Some checks failed
CodeQL Scan / Analyze (javascript-typescript) (push) Failing after 58s
Build Docker Images / lint (push) Successful in 33s
Build Docker Images / check (push) Failing after 5m31s
Build Docker Images / tests (push) Failing after 8s
Build Docker Images / build (server, Dockerfile, ${{ github.repository_owner }}/server) (push) Has been skipped
Build Docker Images / build (worker, Worker.Dockerfile, ${{ github.repository_owner }}/worker) (push) Has been skipped
Deploy Docs to GitHub Pages / build (push) Failing after 17s
Mirror to Codeberg / Mirror (push) Failing after 0s
Deploy Docs to GitHub Pages / Deploy (push) Has been skipped
Nix Build / check (push) Failing after 32m49s
55 lines
1.4 KiB
Docker
55 lines
1.4 KiB
Docker
# Node is required for building the project
|
|
FROM imbios/bun-node:1-20-alpine AS base
|
|
|
|
RUN apk add --no-cache libstdc++
|
|
|
|
# Install dependencies into temp directory
|
|
# This will cache them and speed up future builds
|
|
FROM base AS install
|
|
|
|
RUN mkdir -p /temp
|
|
COPY . /temp
|
|
WORKDIR /temp
|
|
RUN bun install --production
|
|
|
|
FROM base AS build
|
|
|
|
# Copy the project
|
|
RUN mkdir -p /temp
|
|
COPY . /temp
|
|
# Copy dependencies
|
|
COPY --from=install /temp/node_modules /temp/node_modules
|
|
|
|
# Build the project
|
|
WORKDIR /temp
|
|
RUN bun run build
|
|
WORKDIR /temp/dist
|
|
|
|
# Copy production dependencies and source code into final image
|
|
FROM oven/bun:1.2.3-alpine
|
|
|
|
# Install libstdc++ for Bun and create app directory
|
|
RUN apk add --no-cache libstdc++ && \
|
|
mkdir -p /app
|
|
|
|
COPY --from=build /temp/dist /app/dist
|
|
COPY entrypoint.sh /app
|
|
|
|
LABEL org.opencontainers.image.authors="Gaspard Wierzbinski (https://cpluspatch.dev)"
|
|
LABEL org.opencontainers.image.source="https://github.com/versia-pub/server"
|
|
LABEL org.opencontainers.image.vendor="Versia Pub"
|
|
LABEL org.opencontainers.image.licenses="AGPL-3.0-or-later"
|
|
LABEL org.opencontainers.image.title="Versia Server"
|
|
LABEL org.opencontainers.image.description="Versia Server Docker image"
|
|
|
|
# Set current Git commit hash as an environment variable
|
|
ARG GIT_COMMIT
|
|
ENV GIT_COMMIT=$GIT_COMMIT
|
|
|
|
# CD to app
|
|
WORKDIR /app
|
|
ENV NODE_ENV=production
|
|
ENTRYPOINT [ "/bin/sh", "/app/entrypoint.sh" ]
|
|
# Run migrations and start the server
|
|
CMD [ "cli", "start" ]
|