Skip to content

Commit c0a280b

Browse files
committed
new version
1 parent 045bbfb commit c0a280b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM osixia/baseimage:0.5.0
1+
FROM osixia/baseimage:0.6.0
22
MAINTAINER Bertrand Gouny <bertrand.gouny@osixia.fr>
33

44
# Default configuration: can be overridden at the docker command line
@@ -24,7 +24,7 @@ CMD ["/sbin/my_init"]
2424
RUN apt-get -y update
2525

2626
# Install phpLDAPadmin
27-
RUN LC_ALL=C DEBIAN_FRONTEND=noninteractive apt-get install -y phpldapadmin
27+
RUN LC_ALL=C DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends phpldapadmin
2828

2929
# Expose port 80 must (match port in phpLDAPadmin.nginx)
3030
EXPOSE 80

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
NAME = osixia/phpldapadmin
2-
VERSION = 0.2.2
2+
VERSION = 0.3.1
33

44
.PHONY: all build test tag_latest release
55

@@ -9,7 +9,7 @@ build:
99
docker.io build -t $(NAME):$(VERSION) --rm .
1010

1111
test:
12-
env NAME=$(NAME) VERSION=$(VERSION) ./test.sh
12+
env NAME=$(NAME) VERSION=$(VERSION) ./test.sh debug
1313

1414
tag_latest:
1515
docker.io tag $(NAME):$(VERSION) $(NAME):latest

0 commit comments

Comments
 (0)