forked from geopython/pycsw
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/geopython/pycsw into ISO1…
…9115-3-part1
- Loading branch information
Showing
48 changed files
with
355 additions
and
367 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ | |
# Copyright (c) 2020 Ricardo Garcia Silva | ||
# Copyright (c) 2020 Massimo Di Stefano | ||
# Copyright (c) 2020 Tom Kralidis | ||
# Copyright (c) 2020 Angelos Tzotsos | ||
# Copyright (c) 2024 Angelos Tzotsos | ||
# | ||
# Permission is hereby granted, free of charge, to any person | ||
# obtaining a copy of this software and associated documentation | ||
|
@@ -36,17 +36,17 @@ | |
# | ||
# ================================================================= | ||
|
||
FROM python:3.8-slim-buster | ||
FROM python:3.10-slim-bookworm | ||
LABEL maintainer="[email protected],[email protected],[email protected]" | ||
|
||
# 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 apt-get update --yes && \ | ||
apt-get install --yes --no-install-recommends ca-certificates python3-setuptools && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
RUN adduser --uid 1000 --gecos '' --disabled-password pycsw | ||
|
||
|
@@ -63,19 +63,19 @@ COPY --chown=pycsw \ | |
requirements-dev.txt \ | ||
./ | ||
|
||
RUN pip install -U pip && \ | ||
python3 -m pip install \ | ||
RUN pip3 install -U pip setuptools && \ | ||
pip3 install \ | ||
--requirement requirements.txt \ | ||
--requirement requirements-standalone.txt \ | ||
psycopg2-binary gunicorn \ | ||
&& if [ "$BUILD_DEV_IMAGE" = "true" ] ; then python3 -m pip install -r requirements-dev.txt; fi | ||
&& if [ "$BUILD_DEV_IMAGE" = "true" ] ; then python3 -m pip3 install -r requirements-dev.txt; fi | ||
|
||
COPY --chown=pycsw . . | ||
|
||
COPY docker/pycsw.yml ${PYCSW_CONFIG} | ||
COPY docker/entrypoint.py /usr/local/bin/entrypoint.py | ||
|
||
RUN python3 -m pip install --editable . | ||
RUN pip3 install --editable . | ||
|
||
WORKDIR /home/pycsw | ||
|
||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.