File: Dockerfile

package info (click to toggle)
python-mongomock 4.3.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,028 kB
  • sloc: python: 16,412; makefile: 24
file content (19 lines) | stat: -rw-r--r-- 395 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
FROM ubuntu:noble
RUN apt-get update \
 && apt-get install -y \
    curl \
    git \
    llvm \
    build-essential \
    libssl-dev \
    zlib1g-dev \
    libbz2-dev \
    liblzma-dev \
    libreadline-dev \
    libsqlite3-dev \
    libncurses5-dev \
    pipx

ENV PATH /root/.local/bin:${PATH}
RUN pipx ensurepath && pipx install hatch
RUN hatch python install 3.8 3.9 3.10 3.11 3.12 pypy3.10