-
Notifications
You must be signed in to change notification settings - Fork 237
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ENG-1174 percona-docker repo issues with repositories
- Loading branch information
Showing
1 changed file
with
3 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
FROM debian:jessie | ||
FROM debian/eol:jessie | ||
MAINTAINER Percona Development Team <[email protected]> | ||
|
||
RUN apt-get update && apt-get install -y --no-install-recommends \ | ||
apt-transport-https ca-certificates \ | ||
pwgen \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
RUN apt-key adv --keyserver keys.gnupg.net --recv-keys 8507EFA5 | ||
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 8507EFA5 | ||
|
||
RUN echo 'deb https://repo.percona.com/apt jessie main' > /etc/apt/sources.list.d/percona.list | ||
|
||
|
@@ -15,7 +15,7 @@ RUN useradd -u 1001 -r -g 0 -s /sbin/nologin \ | |
-c "Default Application User" mongodb | ||
|
||
ENV PERCONA_MAJOR 30 | ||
ENV PERCONA_VERSION 3.0.14-1.9.jessie | ||
ENV PERCONA_VERSION 3.0.15-1.10.jessie | ||
|
||
|
||
RUN \ | ||
|