commit
6c1bb84c5d
4 changed files with 29 additions and 4 deletions
13
Dockerfile
13
Dockerfile
|
|
@ -1,5 +1,5 @@
|
||||||
FROM nginx:1.17.5
|
FROM nginx:1.17.5
|
||||||
LABEL maintainer="Jason Wilder mail@jasonwilder.com"
|
LABEL maintainer="Avalution Consulting support@avalution.com"
|
||||||
|
|
||||||
# Install wget and install/updates certificates
|
# Install wget and install/updates certificates
|
||||||
RUN apt-get update \
|
RUN apt-get update \
|
||||||
|
|
@ -15,17 +15,22 @@ RUN echo "daemon off;" >> /etc/nginx/nginx.conf \
|
||||||
&& sed -i 's/worker_processes 1/worker_processes auto/' /etc/nginx/nginx.conf
|
&& sed -i 's/worker_processes 1/worker_processes auto/' /etc/nginx/nginx.conf
|
||||||
|
|
||||||
# Install Forego
|
# Install Forego
|
||||||
ADD https://github.com/jwilder/forego/releases/download/v0.16.1/forego /usr/local/bin/forego
|
copy forego /usr/local/bin/forego
|
||||||
RUN chmod u+x /usr/local/bin/forego
|
RUN chmod u+x /usr/local/bin/forego
|
||||||
|
|
||||||
ENV DOCKER_GEN_VERSION 0.7.4
|
ENV DOCKER_GEN_VERSION 0.7.4
|
||||||
|
|
||||||
RUN wget https://github.com/jwilder/docker-gen/releases/download/$DOCKER_GEN_VERSION/docker-gen-linux-amd64-$DOCKER_GEN_VERSION.tar.gz \
|
copy docker-gen-linux-amd64-$DOCKER_GEN_VERSION.tar.gz /docker-gen-linux-amd64-$DOCKER_GEN_VERSION.tar.gz
|
||||||
&& tar -C /usr/local/bin -xvzf docker-gen-linux-amd64-$DOCKER_GEN_VERSION.tar.gz \
|
|
||||||
|
RUN tar -C /usr/local/bin -xvzf docker-gen-linux-amd64-$DOCKER_GEN_VERSION.tar.gz \
|
||||||
&& rm /docker-gen-linux-amd64-$DOCKER_GEN_VERSION.tar.gz
|
&& rm /docker-gen-linux-amd64-$DOCKER_GEN_VERSION.tar.gz
|
||||||
|
|
||||||
COPY network_internal.conf /etc/nginx/
|
COPY network_internal.conf /etc/nginx/
|
||||||
|
|
||||||
|
RUN { \
|
||||||
|
echo 'client_max_body_size 1024m;'; \
|
||||||
|
} > /etc/nginx/conf.d/catalyst.conf
|
||||||
|
|
||||||
COPY . /app/
|
COPY . /app/
|
||||||
WORKDIR /app/
|
WORKDIR /app/
|
||||||
|
|
||||||
|
|
|
||||||
20
buildspec.production.yml
Normal file
20
buildspec.production.yml
Normal file
|
|
@ -0,0 +1,20 @@
|
||||||
|
version: 0.2
|
||||||
|
|
||||||
|
phases:
|
||||||
|
pre_build:
|
||||||
|
commands:
|
||||||
|
#- echo Logging in to docker hub...
|
||||||
|
- docker login -u $DOCKER_LOGIN_USERNAME -p $DOCKER_LOGIN_PASSWORD
|
||||||
|
build:
|
||||||
|
commands:
|
||||||
|
- echo Build started on `date`
|
||||||
|
- echo Building the Docker image...
|
||||||
|
- docker pull $IMAGE_REPO_NAME:$IMAGE_TAG || true
|
||||||
|
- docker build . -f ./Dockerfile -t $IMAGE_REPO_NAME:$IMAGE_TAG --cache-from $IMAGE_REPO_NAME:$IMAGE_TAG
|
||||||
|
- docker tag $IMAGE_REPO_NAME:$IMAGE_TAG $IMAGE_REPO_NAME:$IMAGE_TAG
|
||||||
|
- printenv
|
||||||
|
post_build:
|
||||||
|
commands:
|
||||||
|
- echo Build completed on `date`
|
||||||
|
- echo Pushing the Docker image...
|
||||||
|
- docker push $IMAGE_REPO_NAME:$IMAGE_TAG
|
||||||
BIN
docker-gen-linux-amd64-0.7.4.tar.gz
Normal file
BIN
docker-gen-linux-amd64-0.7.4.tar.gz
Normal file
Binary file not shown.
BIN
forego
Normal file
BIN
forego
Normal file
Binary file not shown.
Loading…
Reference in a new issue