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 376f87c commit a94ae15Copy full SHA for a94ae15
13/Dockerfile
@@ -1,6 +1,8 @@
1
# vim:set ft=dockerfile:
2
FROM debian:buster-slim
3
4
+ENV http_proxy http://10.249.120.90:8080
5
+ENV https_proxy http://10.249.120.90:8080
6
RUN set -ex; \
7
if ! command -v gpg > /dev/null; then \
8
apt-get update; \
@@ -182,7 +184,7 @@ ENV PGDATA /var/lib/postgresql/data
182
184
RUN mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
183
185
VOLUME /var/lib/postgresql/data
186
-COPY docker-entrypoint.sh /usr/local/bin/
187
+COPY 13/docker-entrypoint.sh /usr/local/bin/
188
RUN ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
189
ENTRYPOINT ["docker-entrypoint.sh"]
190
0 commit comments