mirror of
https://github.com/morten-olsen/configs.git
synced 2026-02-08 00:46:24 +01:00
10 lines
214 B
Docker
10 lines
214 B
Docker
FROM debian:bookworm
|
|
WORKDIR /app
|
|
RUN apt-get update && apt-get install -y \
|
|
python3 \
|
|
python3-pip \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
COPY requirements.txt /app
|
|
RUN pip3 install -r requirements.txt
|
|
COPY . /app
|