Skip to content

Commit

Permalink
fix: update Dockerfile syntax
Browse files Browse the repository at this point in the history
Signed-off-by: Rael Garcia Arnes <rael@redhat.com>
  • Loading branch information
raelga committed Dec 17, 2024
1 parent f0b8dc6 commit 4db1dff
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 39 deletions.
45 changes: 20 additions & 25 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
FROM hashicorp/terraform:1.3.5 as terraform
FROM hashicorp/terraform:1.3.5 AS terraform

FROM amazon/aws-cli:2.8.13 as aws
FROM amazon/aws-cli:2.8.13 AS aws

FROM regclient/regctl:edge-alpine as regctl
FROM regclient/regctl:edge-alpine AS regctl

FROM golang:1.19.3-bullseye as go
FROM golang:1.19.3-bullseye AS go

RUN GO111MODULE=on go install -v -x -a github.com/raviqqe/liche@latest

FROM gcr.io/tekton-releases/github.com/tektoncd/pipeline/cmd/git-init:v0.45.0 as git-init
FROM gcr.io/tekton-releases/github.com/tektoncd/pipeline/cmd/git-init:v0.45.0 AS git-init

FROM alpine:3.20 as kubectl
FROM alpine:3.20 AS kubectl

ENV VERSION="v1.32.0"
ENV BINARY="/bin/kubectl"

RUN if [ $(uname -m) == "aarch64" ]; then ARCH="arm64"; else ARCH="amd64"; fi; \
wget -q "https://dl.k8s.io/release/${VERSION}/bin/linux/${ARCH}/kubectl" -O ${BINARY}

FROM alpine:3.20 as PolicyGenerator
FROM alpine:3.20 AS policygenerator

ENV VERSION="v1.16.0"
ENV REGISTRY="open-cluster-management-io/policy-generator-plugin"
Expand All @@ -27,23 +27,23 @@ ENV BINARY="/bin/PolicyGenerator"
RUN if [ $(uname -m) == "aarch64" ]; then ARCH="arm64"; else ARCH="amd64"; fi; \
wget -q "https://github.com/${REGISTRY}/releases/download/${VERSION}/linux-${ARCH}-PolicyGenerator" -O ${BINARY}

FROM alpine:3.20 as gh
FROM alpine:3.20 AS gh

ENV GITHUB_CLI_VERSION=2.0.0
RUN if [ $(uname -m) == "aarch64" ]; then ARCH=arm64; else ARCH=amd64; fi; \
wget -O /tmp/gh.tgz https://github.com/cli/cli/releases/download/v${GITHUB_CLI_VERSION}/gh_${GITHUB_CLI_VERSION}_linux_${ARCH}.tar.gz && \
tar --strip-components=2 --extract --file /tmp/gh.tgz \
gh_${GITHUB_CLI_VERSION}_linux_${ARCH}/bin/gh && mv -v gh /bin/gh

FROM alpine:3.20 as yq
FROM alpine:3.20 AS yq

ENV VERSION=v4.30.5
RUN if [ $(uname -m) == "aarch64" ]; then ARCH=arm64; else ARCH=amd64; fi; \
wget -O /tmp/yq.tgz https://github.com/mikefarah/yq/releases/download/${VERSION}/yq_linux_${ARCH}.tar.gz && \
tar --extract --file /tmp/yq.tgz \
./yq_linux_${ARCH} && mv -v yq_linux_${ARCH} /bin/yq

FROM alpine:3.20 as mysql
FROM alpine:3.20 AS mysql

RUN if [ $(uname -m) == "aarch64" ]; then ARCH=aarch64; else ARCH=x86_64; fi; \
wget -O /tmp/mysql.tgz https://dev.mysql.com/get/Downloads/MySQL-8.0/mysql-8.0.39-linux-glibc2.28-${ARCH}.tar.xz && \
Expand All @@ -54,7 +54,7 @@ RUN if [ $(uname -m) == "aarch64" ]; then ARCH=aarch64; else ARCH=x86_64; fi; \

FROM debian:12.4-slim

ENV DEBIAN_FRONTEND noninteractive
ENV DEBIAN_FRONTEND="noninteractive"

RUN apt-get update -yq && \
DEBIAN_FRONTEND=noninteractive \
Expand All @@ -71,9 +71,9 @@ RUN \
echo "LANG=en_US.UTF-8" >/etc/locale.conf && \
locale-gen en_US.UTF-8

ENV LANG "en_US.UTF-8"
ENV LANGUAGE "en_US.UTF-8"
ENV LC_ALL "en_US.UTF-8"
ENV LANG="en_US.UTF-8"
ENV LANGUAGE="en_US.UTF-8"
ENV LC_ALL="en_US.UTF-8"

COPY --from=mysql /bin/mysql /usr/local/bin
COPY --from=mysql /bin/mysqldump /usr/local/bin
Expand All @@ -83,8 +83,8 @@ RUN gem install \

COPY --from=aws /usr/local/aws-cli /usr/local/aws-cli

ENV AWS_BIN /usr/local/aws-cli/v2/current/bin
ENV PATH "$AWS_BIN:$PATH"
ENV AWS_BIN="/usr/local/aws-cli/v2/current/bin"
ENV PATH="$AWS_BIN:$PATH"

COPY --from=git-init /ko-app/git-init /usr/local/bin

Expand All @@ -98,18 +98,13 @@ COPY --from=yq /bin/yq /usr/local/bin

COPY --from=kubectl --chmod=775 /bin/kubectl /usr/local/bin

ENV KUSTOMIZE_PLUGIN_HOME /opt/kustomize/plugin
ENV KUSTOMIZE_PLUGIN_HOME="/opt/kustomize/plugin"

COPY --from=PolicyGenerator --chmod=775 /bin/PolicyGenerator \
COPY --from=policygenerator --chmod=775 /bin/PolicyGenerator \
/opt/kustomize/plugin/policy.open-cluster-management.io/v1/policygenerator/PolicyGenerator

# ENV GO_BIN /go/bin
# ENV PATH "$GO_BIN:$PATH"

# COPY --from=go /go/bin $GO_BIN

ENV BIN_3SCALE /opt/3scale/bin
ENV PATH "$BIN_3SCALE:$PATH"
ENV BIN_3SCALE="/opt/3scale/bin"
ENV PATH="$BIN_3SCALE:$PATH"

ADD bin/ $BIN_3SCALE
RUN chmod -R 0755 $BIN_3SCALE
28 changes: 14 additions & 14 deletions Dockerfile-ci
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
FROM hashicorp/terraform:1.3.5 as terraform
FROM hashicorp/terraform:1.3.5 AS terraform

FROM regclient/regctl:edge-alpine as regctl
FROM regclient/regctl:edge-alpine AS regctl

FROM golang:1.19.3-alpine as go
FROM golang:1.19.3-alpine AS go

RUN apk add --update git

RUN GO111MODULE=on go install github.com/raviqqe/liche@latest

FROM gcr.io/tekton-releases/github.com/tektoncd/pipeline/cmd/git-init:v0.45.0 as git-init
FROM gcr.io/tekton-releases/github.com/tektoncd/pipeline/cmd/git-init:v0.45.0 AS git-init

FROM alpine:3.20 as kubectl
FROM alpine:3.20 AS kubectl

ENV VERSION="v1.32.0"
ENV BINARY="/bin/kubectl"

RUN if [ $(uname -m) == "aarch64" ]; then ARCH="arm64"; else ARCH="amd64"; fi; \
wget -q "https://dl.k8s.io/release/${VERSION}/bin/linux/${ARCH}/kubectl" -O ${BINARY}

FROM alpine:3.20 as PolicyGenerator
FROM alpine:3.20 AS policygenerator

ENV VERSION="v1.16.0"
ENV REGISTRY="open-cluster-management-io/policy-generator-plugin"
Expand All @@ -27,15 +27,15 @@ ENV BINARY="/bin/PolicyGenerator"
RUN if [ $(uname -m) == "aarch64" ]; then ARCH="arm64"; else ARCH="amd64"; fi; \
wget -q "https://github.com/${REGISTRY}/releases/download/${VERSION}/linux-${ARCH}-PolicyGenerator" -O ${BINARY}

FROM alpine:3.20 as gh
FROM alpine:3.20 AS gh

ENV GITHUB_CLI_VERSION=2.0.0
RUN if [ $(uname -m) == "aarch64" ]; then ARCH=arm64; else ARCH=amd64; fi; \
wget -O /tmp/gh.tgz https://github.com/cli/cli/releases/download/v${GITHUB_CLI_VERSION}/gh_${GITHUB_CLI_VERSION}_linux_${ARCH}.tar.gz && \
tar --strip-components=2 --extract --file /tmp/gh.tgz \
gh_${GITHUB_CLI_VERSION}_linux_${ARCH}/bin/gh && mv -v gh /bin/gh

FROM alpine:3.20 as yq
FROM alpine:3.20 AS yq

ENV VERSION=v4.30.5
RUN if [ $(uname -m) == "aarch64" ]; then ARCH=arm64; else ARCH=amd64; fi; \
Expand Down Expand Up @@ -64,18 +64,18 @@ COPY --from=yq /bin/yq /usr/local/bin

COPY --from=kubectl --chmod=775 /bin/kubectl /usr/local/bin

ENV KUSTOMIZE_PLUGIN_HOME /opt/kustomize/plugin
ENV KUSTOMIZE_PLUGIN_HOME="/opt/kustomize/plugin"

COPY --from=PolicyGenerator --chmod=775 /bin/PolicyGenerator \
COPY --from=policygenerator --chmod=775 /bin/PolicyGenerator \
/opt/kustomize/plugin/policy.open-cluster-management.io/v1/policygenerator/PolicyGenerator

ENV GO_BIN /go/bin
ENV PATH "$GO_BIN:$PATH"
ENV GO_BIN="/go/bin"
ENV PATH="$GO_BIN:$PATH"

COPY --from=go /go/bin $GO_BIN

ENV BIN_3SCALE /opt/3scale/bin
ENV PATH "$BIN_3SCALE:$PATH"
ENV BIN_3SCALE="/opt/3scale/bin"
ENV PATH="$BIN_3SCALE:$PATH"

ADD bin/ $BIN_3SCALE
RUN chmod -R 0755 $BIN_3SCALE

0 comments on commit 4db1dff

Please sign in to comment.