Skip to content

Commit

Permalink
Make the Dockerfile work with the latest Debian
Browse files Browse the repository at this point in the history
  • Loading branch information
egli committed Aug 14, 2023
1 parent 124c746 commit de15b1e
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM debian:latest@sha256:d568e251e460295a8743e9d5ef7de673c5a8f9027db11f4e666e96fb5bed708e
FROM debian:latest@sha256:f2150eba68619015058b26d50e47f9fba81213d1cb81633be7928c830f72d180

LABEL maintainer="Liblouis Maintainers <[email protected]>"

Expand All @@ -11,7 +11,8 @@ RUN apt-get update && apt-get install -y \
libyaml-dev \
make \
pkg-config \
python \
python3 \
python3-distutils \
texinfo \
&& rm -rf /var/lib/apt/lists/*

Expand All @@ -22,7 +23,7 @@ RUN ./autogen.sh && ./configure --enable-ucs4 && make && make install && ldconfi

# install python bindings
WORKDIR /usr/src/liblouis/python
RUN python setup.py install
RUN python3 setup.py install

# clean up
WORKDIR /root
Expand Down

0 comments on commit de15b1e

Please sign in to comment.