api / Dockerfile
RohanVashisht's picture
ok
1fca37b
raw
history blame
289 Bytes
FROM oven/bun:1.0.30
RUN adduser --disabled-password --gecos "" user
USER user
ENV PATH="/home/user/.bun/bin:$PATH"
WORKDIR /app
# Clone the repository
RUN git clone https://github.com/zigistry/database
COPY --chown=user . .
RUN bun install
EXPOSE 7860
CMD ["bun", "./src/index.ts"]