Skip to content

Commit

Permalink
replace docker base with debian:buster (#792)
Browse files Browse the repository at this point in the history
* replace docker base with debian:buster

* install lsb-base
  • Loading branch information
qiwzhang authored Apr 27, 2020
1 parent 0704a6f commit 58f7ed0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker/generic/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# ESP Proxy that forwards requests into the application server.
FROM debian:stretch
FROM debian:buster

# Copy the Endpoints runtime Debian package.
ADD endpoints-runtime.deb endpoints-runtime.deb
Expand All @@ -10,7 +10,7 @@ RUN apt-get update && \
apt-get -y -q upgrade && \
apt-get install -y -q --no-install-recommends \
apt-utils adduser python \
libc6 libgcc1 libstdc++6 libuuid1 && \
libc6 libgcc1 libstdc++6 libuuid1 lsb-base && \
apt-get clean && rm /var/lib/apt/lists/*_* && \
dpkg -i /endpoints-runtime.deb && rm /endpoints-runtime.deb

Expand Down

0 comments on commit 58f7ed0

Please sign in to comment.