First Commit

This commit is contained in:
2026-09-12 13:56:36 +01:00
commit 4d75af0418
426 changed files with 36452 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
FROM oven/bun:1.3.1-debian
RUN apt update
RUN apt install -y curl bash nano wget zip unzip mariadb-client
ENV NODE_ENV=production
RUN mkdir /app
WORKDIR /app
RUN touch /root/.bashrc
RUN echo 'alias ll="ls -laF"' >/root/.bashrc
COPY . /app/.
RUN bun install
ENV NODE_ENV=production
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]