blob: c2e180cd534da3fd96ab3124693b3981b2bd7a3c [file] [log] [blame]
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
FROM golang:1.12 as builder
RUN env CGO_ENABLED=0 go get github.com/apache/openwhisk-runtime-go/main && mv /go/bin/main /bin/proxy
#ENV PROXY_SOURCE=https://github.com/apache/openwhisk-runtime-go/archive/golang1.11@1.13.0-incubating.tar.gz
#RUN curl -L "$PROXY_SOURCE" | tar xzf - \
# && mkdir -p src/github.com/apache \
# && mv openwhisk-runtime-go-golang1.11-1.13.0-incubating \
# src/github.com/apache/incubator-openwhisk-runtime-go \
# && cd src/github.com/apache/incubator-openwhisk-runtime-go/main \
# && CGO_ENABLED=0 go build -o /bin/proxy
FROM php:7.4.0-cli-buster
# install dependencies
RUN \
apt-get -y update && \
apt-get -y install \
libfreetype6-dev \
libicu-dev \
libicu63 \
libjpeg-dev \
libpng-dev \
libssl-dev \
libxml2-dev \
libzip-dev \
postgresql-server-dev-11 \
unzip \
zlib1g-dev
# Install useful PHP extensions
RUN \
docker-php-ext-install \
bcmath \
gd \
intl \
mysqli \
opcache \
pdo_mysql \
pdo_pgsql \
soap \
zip \
&& pecl install mongodb \
&& docker-php-ext-enable mongodb
COPY php.ini /usr/local/etc/php
# install composer
RUN curl -s -f -L -o /tmp/installer.php https://getcomposer.org/installer \
&& php /tmp/installer.php --no-ansi --install-dir=/usr/bin --filename=composer \
&& composer --ansi --version --no-interaction --no-plugins --no-scripts
# install default Composer dependencies
RUN mkdir -p /phpAction/composer
COPY composer.json /phpAction/composer
RUN cd /phpAction/composer && /usr/bin/composer install --no-plugins --no-scripts --prefer-dist --no-dev -o && rm composer.lock
# install proxy binary alogn with compile and launcher scripts
RUN mkdir -p /phpAction/action
WORKDIR /phpAction
COPY --from=builder /bin/proxy /bin/proxy
ADD compile /bin/compile
ADD runner.php /bin/runner.php
ENV OW_COMPILER=/bin/compile
ENTRYPOINT [ "/bin/proxy" ]