Skip to content

Commit fe2a05b

Browse files
committed
Adding Dockerfile.release copy of standard CA Certs
1 parent 3f3fc88 commit fe2a05b

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

Dockerfile.release

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
1+
FROM ubuntu:18.04
2+
3+
RUN apt-get update -y && apt-get install -y ca-certificates
4+
15
FROM scratch
26
MAINTAINER MinIO Development "[email protected]"
37
EXPOSE 9090
48
COPY console /console
59

10+
COPY --from=0 /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
11+
612
ENTRYPOINT ["/console"]

restapi/admin_tenants.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -412,7 +412,7 @@ func getTenantCreatedResponse(session *models.Principal, params admin_api.Create
412412
return nil, err
413413
}
414414

415-
const consoleVersion = "minio/console:v0.3.2"
415+
const consoleVersion = "minio/console:v0.3.3"
416416
minInst.Spec.Console = &operator.ConsoleConfiguration{
417417
Replicas: 2,
418418
Image: consoleVersion,

0 commit comments

Comments
 (0)