19 lines
302 B
Docker
19 lines
302 B
Docker
FROM python:3.9-slim
|
|
|
|
RUN apt-get update && apt-get install -y ffmpeg libsm6 libxext6 curl unzip
|
|
|
|
RUN pip install deface
|
|
|
|
RUN curl -fsSL https://bun.sh/install | bash
|
|
ENV PATH="/root/.bun/bin:${PATH}"
|
|
|
|
WORKDIR /app
|
|
|
|
COPY package.json .
|
|
RUN bun install
|
|
|
|
COPY src ./src
|
|
|
|
EXPOSE 3000
|
|
|
|
CMD ["bun", "start"] |