Change build to remove unnessary files in the resulting container
All checks were successful
Create Docker Image / Build Docker Image (x86_64) (push) Successful in 27s
Create Docker Image / Build Docker Image (arm64) (push) Successful in 1m30s
Create Docker Image / Final Docker Image Manifest (push) Successful in 9s

This commit is contained in:
Deon George 2024-11-05 13:33:55 +11:00
parent 7df0612db1
commit f168f86836
3 changed files with 7 additions and 10 deletions

View File

@ -74,8 +74,7 @@ jobs:
( dockerd --host=tcp://0.0.0.0:2375 --tls=false & ) && sleep 3 ( dockerd --host=tcp://0.0.0.0:2375 --tls=false & ) && sleep 3
## Some debugging info ## Some debugging info
# docker info && docker version # docker info && docker version
env|sort # env|sort
echo "PRT: ${{ secrets.PKG_WRITE_TOKEN }}"
- name: Registry FQDN Setup - name: Registry FQDN Setup
id: registry id: registry
@ -93,12 +92,10 @@ jobs:
- name: Code Checkout - name: Code Checkout
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Record version - name: Record version and Delete Unnecessary files
run: | run: |
pwd
ls -al
echo ${GITHUB_SHA::8} > VERSION echo ${GITHUB_SHA::8} > VERSION
cat VERSION rm -rf .git* tests/ storage/app/test/
- name: Build and Push Docker Image - name: Build and Push Docker Image
uses: docker/build-push-action@v5 uses: docker/build-push-action@v5

View File

@ -1,11 +1,11 @@
FROM gitea.dege.au/docker/php:8.3-fpm-pgsql-server FROM gitea.dege.au/docker/php:8.3-fpm-pgsql-server
VOLUME [ "/var/cache/composer", "/var/lib/zerotier-one" ] VOLUME [ "${COMPOSER_HOME}", "/var/lib/zerotier-one" ]
# Add Zerotier # Add Zerotier
RUN apk add zerotier-one -X http://dl-cdn.alpinelinux.org/alpine/v3.17/community --no-cache RUN apk add zerotier-one -X http://dl-cdn.alpinelinux.org/alpine/v3.17/community --no-cache
COPY init-container /sbin/ COPY docker/init-container /sbin/
COPY . /var/www/html/ COPY . /var/www/html/
RUN mkdir -p ${COMPOSER_HOME} \ RUN mkdir -p ${COMPOSER_HOME} \
@ -13,7 +13,7 @@ RUN mkdir -p ${COMPOSER_HOME} \
&& touch .composer.refresh \ && touch .composer.refresh \
&& mv .env.example .env \ && mv .env.example .env \
&& apk add --no-cache git \ && apk add --no-cache git \
&& FORCE_PERMS=1 NGINX_START=FALSE /sbin/init \ && APP_TIMEZONE=UTC FORCE_PERMS=1 NGINX_START=FALSE /sbin/init \
&& apk del --no-cache git \ && apk del --no-cache git \
&& chmod +x /var/www/html/artisan /var/www/html/init-php.sh \ && chmod +x /var/www/html/artisan /var/www/html/init-php.sh \
&& rm -rf ${COMPOSER_HOME}/* .git* composer.lock && rm -rf ${COMPOSER_HOME}/* composer.lock storage/logs/*.log