File: Dockerfile

package info (click to toggle)
txt2regex 0.9-5
  • links: PTS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 572 kB
  • sloc: sh: 1,598; makefile: 108
file content (33 lines) | stat: -rw-r--r-- 752 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# A handy Docker container so I can test the regex support in most of
# the programs that txt2regex supports.
#
# This is used by the tests/regex-tester.sh script.
# Use `make test-regex` to build the image and run the tests on it.

FROM ubuntu:18.04

# To avoid "Configuring tzdata" prompt
ARG DEBIAN_FRONTEND=noninteractive

# flex: gcc libc6-dev
RUN apt-get update && \
    apt-get install -y --no-install-suggests --no-install-recommends \
    chicken-bin \
    ed \
    emacs-nox \
    expect \
    flex \
    gawk \
    gcc \
    libc6-dev \
    mysql-server \
    nodejs \
    nvi \
    original-awk \
    php7.2-cli \
    postgresql \
    procmail \
    python3-minimal \
    tcl \
    vim \
    && apt-get clean && rm -rf /var/lib/apt/lists/*