11 lines
179 B
Docker
11 lines
179 B
Docker
FROM git.orionkindel.com/tpl/asdf:bookworm
|
|
|
|
COPY .tool-versions ./
|
|
RUN asdf install
|
|
|
|
COPY requirements.txt ./
|
|
RUN pip install -r requirements.txt
|
|
|
|
COPY ./ ./
|
|
CMD ["python", "./"]
|