Skip to content

Commit 885fa25

Browse files
authored
Merge pull request #26 from udx/UAT-83
Fix GPG Verification [UAT-83]
2 parents bfc956b + 57a8a38 commit 885fa25

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

Dockerfile

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Use the UDX worker as the base image
2-
FROM usabilitydynamics/udx-worker:0.16.0
2+
FROM usabilitydynamics/udx-worker:0.17.0
33

44
# Add metadata labels
55
LABEL maintainer="UDX"
6-
LABEL version="0.12.0"
6+
LABEL version="0.13.0"
77

88
# Arguments and Environment Variables
99
ARG PHP_VERSION=8.4
@@ -27,7 +27,10 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
2727
php"${PHP_VERSION}"-curl="${PHP_PACKAGE_VERSION}" \
2828
php"${PHP_VERSION}"-xml="${PHP_PACKAGE_VERSION}" \
2929
php"${PHP_VERSION}"-zip="${PHP_PACKAGE_VERSION}" && \
30-
apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* && \
30+
apt-get clean && \
31+
rm -rf /tmp/* /var/tmp/* && \
32+
mkdir -p /etc/apt/sources.list.d && \
33+
chmod 755 /etc/apt/sources.list.d && \
3134
mkdir -p /var/log/php /var/log/nginx /run/php /tmp /var/lib/nginx/body && \
3235
touch /var/log/php/fpm.log && \
3336
chown -R "${USER}:${USER}" /var/log/php /var/log/nginx /run/php /tmp /var/lib/nginx $APP_HOME && \

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,5 +150,5 @@ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file
150150

151151
---
152152
<div align="center">
153-
Built with ❤️ by <a href="https://udx.io">UDX</a>
154-
</div>
153+
Built by <a href="https://udx.io">UDX</a> © 2025
154+
</div>

0 commit comments

Comments
 (0)