File: dev.dockerfile

package info (click to toggle)
urwid 3.0.4-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 3,232 kB
  • sloc: python: 29,010; javascript: 382; sh: 34; makefile: 22
file content (15 lines) | stat: -rw-r--r-- 394 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
FROM ubuntu:24.04
RUN apt-get update -y \
    && apt-get upgrade -y \
    && apt-get install -y \
      python3-dev \
      python3-pip \
      python3-virtualenv \
      python3-gi \
      python3-gi-cairo \
      gobject-introspection \
      libgirepository-2.0-dev \
      libcairo2-dev \
    && apt-get clean
RUN mkdir -p ~/.virtualenvs \
    && virtualenv --download ~/.virtualenvs/urwid