api / Dockerfile
RohanVashisht's picture
Update Dockerfile
7a0c529 verified
raw
history blame
215 Bytes
FROM oven/bun:1.0.30
RUN adduser --disabled-password --gecos "" user
USER user
ENV PATH="/home/user/.bun/bin:$PATH"
WORKDIR /app
COPY --chown=user . .
RUN bun install
EXPOSE 7860
CMD ["bun", "./src/index.ts"]