orm (WIP)

This commit is contained in:
2025-01-01 14:17:30 +00:00
parent bdd4042cef
commit ceab3db8b4
13 changed files with 13552 additions and 29 deletions
+8 -3
View File
@@ -46,11 +46,16 @@ RUN echo "set -g theme_nerd_fonts yes" >> ~/.config/fish/config.fish \
# Installiere Deno
ENV DENO_INSTALL=/deno
RUN mkdir -p /deno \
RUN mkdir -p ${DENO_INSTALL} \
&& curl -fsSL https://deno.land/x/install/install.sh | sh \
&& chown -R vscode /deno
ENV PATH=${DENO_INSTALL}/bin:/usr/local/go/bin:${PATH} \
# Installiere Bun
ENV BUN_INSTALL=/bun
RUN mkdir -p ${BUN_INSTALL} \
&& curl -fsSL https://bun.sh/install | bash
ENV PATH=${BUN_INSTALL}/bin:${DENO_INSTALL}/bin:/usr/local/go/bin:${PATH} \
DENO_DIR=${DENO_INSTALL}/.cache/deno
RUN groupadd -r docker && usermod -aG docker $USERNAME
@@ -58,7 +63,7 @@ RUN groupadd -r docker && usermod -aG docker $USERNAME
WORKDIR /workspace
# Zusätzliche Pakete installieren
RUN apt-get update && apt-get install -y protobuf-compiler
RUN apt-get update && apt-get install -y protobuf-compiler netcat
# Ports für React und Dart Services
EXPOSE 3000 8080 4000