mirror of
https://github.com/Danny-de-bree/fullstaq-operator.git
synced 2026-02-14 09:29:52 +00:00
8 lines
120 B
Docker
8 lines
120 B
Docker
FROM python:3.11
|
|
|
|
WORKDIR /opt/app
|
|
|
|
COPY requirements.txt /opt/app
|
|
RUN pip3 install -r requirements.txt
|
|
|
|
COPY . /opt/app |