Updates
This commit is contained in:
+10
-8
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user