33 lines
822 B
Docker
33 lines
822 B
Docker
# Use a PHP runtime as a parent image
|
|
FROM 662348923997.dkr.ecr.eu-west-1.amazonaws.com/asdynamics/asdphp-kube:§ASDPHP_VERSION§
|
|
|
|
# Set the working directory to /app
|
|
WORKDIR /§PROJECT_BUILDNAME§
|
|
|
|
# Install some useful packages
|
|
ENV PACKAGES="dnsutils nano"
|
|
RUN apt-get update && \
|
|
apt-get install -yq --no-install-recommends $PACKAGES && \
|
|
apt-get clean && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
# Copy the current directory contents into the container at /app
|
|
COPY ./app /§PROJECT_BUILDNAME§
|
|
|
|
COPY ./version /§PROJECT_BUILDNAME§
|
|
|
|
COPY ./config /§PROJECT_BUILDNAME§
|
|
|
|
COPY ./install /§PROJECT_BUILDNAME§
|
|
|
|
RUN chmod 744 /§PROJECT_BUILDNAME§/install
|
|
|
|
RUN /§PROJECT_BUILDNAME§/install
|
|
|
|
|
|
ENTRYPOINT ["§PROJECT_BUILDNAME§-entrypoint"]
|
|
|
|
# Make port 80 available to the world outside this container
|
|
EXPOSE 80
|
|
|