Skip to content

Commit

Permalink
fix maitainer
Browse files Browse the repository at this point in the history
Signed-off-by: Shubham Gupta <[email protected]>
  • Loading branch information
shubham-cmyk committed Oct 6, 2023
1 parent ed58aa1 commit bad52b2
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM alpine:3.15 as builder

MAINTAINER Opstree Solutions
LABEL maintainer="Opstree Solutions"

ARG TARGETARCH

Expand All @@ -14,14 +14,17 @@ ARG REDIS_VERSION="stable"
RUN apk add --no-cache su-exec tzdata make curl build-base linux-headers bash openssl-dev

RUN curl -fL -Lo /tmp/redis-${REDIS_VERSION}.tar.gz ${REDIS_DOWNLOAD_URL}/redis-${REDIS_VERSION}.tar.gz && \
tar xvzf redis-${REDIS_VERSION}.tar.gz && \
cd redis-${REDIS_VERSION} && \
make && \
tar xvzf redis-${REDIS_VERSION}.tar.gz

WORKDIR /tmp/redis-${REDIS_VERSION}

RUN make && \
make install BUILD_TLS=yes


FROM alpine:3.15

MAINTAINER Opstree Solutions
LABEL maintainer="Opstree Solutions"

ARG TARGETARCH

Expand Down

0 comments on commit bad52b2

Please sign in to comment.