15 lines
334 B
Text
15 lines
334 B
Text
FROM oven/bun:1.3.11
|
|
|
|
WORKDIR /app
|
|
|
|
ENV NODE_ENV=production
|
|
|
|
COPY . .
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y --no-install-recommends python3 python3-pip \
|
|
&& rm -rf /var/lib/apt/lists/* \
|
|
&& pip3 install --no-cache-dir -r services/ingest-options/py/requirements.txt \
|
|
&& bun install --frozen-lockfile
|
|
|
|
ENTRYPOINT ["bun"]
|