We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c1e98d commit 474a316Copy full SHA for 474a316
Dockerfile
@@ -140,6 +140,10 @@ RUN python3 -m pip install --no-cache-dir -e .
140
RUN \
141
# Set default config and entrypoint for Docker Image
142
cp /pygeoapi/docker/default.config.yml /pygeoapi/local.config.yml \
143
- && cp /pygeoapi/docker/entrypoint.sh /entrypoint.sh
+ && cp /pygeoapi/docker/entrypoint.sh /entrypoint.sh \
144
+ # compile language files
145
+ && cd /pygeoapi \
146
+ && for i in locale/*; do echo $i && pybabel compile -d locale -l `basename $i`; done
147
+
148
149
ENTRYPOINT ["/entrypoint.sh"]
0 commit comments