fix-docker #1

Merged
chiko merged 12 commits from fix-docker into main 2025-10-21 00:52:32 +00:00
Showing only changes of commit 156a2db485 - Show all commits

View File

@@ -6,7 +6,6 @@ RUN apt-get update && \
rm -rf /var/lib/apt/lists/*
# install BunJs
RUN curl -fsSL https://bun.com/install | bash
ENV PATH="/root/.bun/bin:$PATH"
# install dependencies into temp directory
# this will cache them and speed up future builds
@@ -16,7 +15,7 @@ COPY package.json bun.lock /temp/dev/
RUN cd /temp/dev && bun install --frozen-lockfile
# and install python dependencies
COPY ./requirements.txt .
RUN python3 -m pip install -r requirements.txt
RUN python3 -m pip install --break-system-packages -r requirements.txt
# RUN python3 -m pip install -U python-dotenv
# install with --production (exclude devDependencies)
RUN mkdir -p /temp/prod