Skip to content

Commit

Permalink
libexpat update is now debian default
Browse files Browse the repository at this point in the history
  • Loading branch information
kalxas authored and tomkralidis committed Mar 17, 2023
1 parent aec8bff commit 77d2333
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,15 @@ FROM python:3.8-slim-buster
LABEL maintainer="[email protected],[email protected],[email protected]"

RUN apt-get update && apt-get install --yes \
ca-certificates \
ca-certificates libexpat1 \

# Build arguments
# add "--build-arg BUILD_DEV_IMAGE=true" to Docker build command when building with test/doc tools

ARG BUILD_DEV_IMAGE="false"

RUN apt-get update && apt-get install --yes \
ca-certificates libexpat1 \
&& rm -rf /var/lib/apt/lists/*

RUN adduser --uid 1000 --gecos '' --disabled-password pycsw
Expand Down

1 comment on commit 77d2333

@etj
Copy link
Contributor

@etj etj commented on 77d2333 Sep 4, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@tomkralidis @kalxas This commit is breaking the Docker build

Please sign in to comment.