8 lines
322 B
Docker
8 lines
322 B
Docker
FROM python:3.11-slim
|
|
WORKDIR /app
|
|
RUN apt-get update && apt-get install -y procps && rm -rf /var/lib/apt/lists/*
|
|
RUN apt-get update && apt-get install -y git
|
|
# ??
|
|
RUN git clone https://git.jackrabbits.gay/merrin/NFASBB.git NFASBB
|
|
COPY . .
|
|
CMD pip install --no-cache-dir -r NFASBB/requirements.txt && python NFASBB/main.py |