This commit is contained in:
Benjamin Toby
2025-01-28 19:43:16 +01:00
parent 81cf010cb5
commit 35fec57590
856 changed files with 5362 additions and 2266 deletions
+10 -8
View File
@@ -1,17 +1,19 @@
FROM oven/bun:debian
FROM node:20-bookworm
SHELL ["/bin/bash", "-c"]
RUN rm -rf /var/lib/apt/lists/*
RUN apt-get clean
RUN apt-get update
RUN apt-get install -y apt-transport-https git ca-certificates curl gnupg python3 python3-pip make build-essential mariadb-client wget zip unzip xz-utils
RUN apt-get install -y apt-transport-https
WORKDIR /root
RUN apt-get install -y --no-install-recommends git ca-certificates curl gnupg python3 python3-pip make build-essential mariadb-client
RUN curl -fsSL https://bun.sh/install | bash
ENV PATH="/root/.bun/bin:${PATH}"
RUN bun add -g nodecid batchrun less lessc-watcher
# Install Global Modules
COPY .npmrc /root/.bun/install/global/.npmrc
RUN bun add -g @moduletrace/buncid
COPY docker/mariadb/.mariadb_history /root/.mariadb_history
COPY docker/mariadb/.bash_history /root/.bash_history
COPY docker-entrypoint.sh /usr/local/bin/entrypoint.sh
RUN chmod +x /usr/local/bin/entrypoint.sh