File: debian

package info (click to toggle)
python-userpath 1.9.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 228 kB
  • sloc: python: 771; makefile: 21; sh: 16
file content (10 lines) | stat: -rw-r--r-- 221 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
ARG PYTHON_VERSION
FROM python:${PYTHON_VERSION}

RUN apt-get update \
 && apt-get --no-install-recommends -y install fish zsh

COPY requirements.txt /
RUN pip install -r requirements.txt

CMD ["tail", "-f", "/dev/null"]