fix: 🔧 use new ENV syntax for dockerfile
All checks were successful
repod / xml (push) Successful in 16s
repod / php (push) Successful in 1m0s
repod / nodejs (push) Successful in 1m33s
repod / release (push) Has been skipped

This commit is contained in:
Michel Roux 2024-08-08 09:56:42 +02:00
parent a50947ffaf
commit e63ff6ef04

View File

@ -1,10 +1,10 @@
FROM nextcloud:29 FROM nextcloud:29
ENV NEXTCLOUD_UPDATE 1 ENV NEXTCLOUD_UPDATE=1
ENV NEXTCLOUD_ADMIN_USER repod ENV NEXTCLOUD_ADMIN_USER=repod
ENV NEXTCLOUD_ADMIN_PASSWORD repod ENV NEXTCLOUD_ADMIN_PASSWORD=repod
ENV NEXTCLOUD_INIT_HTACCESS 1 ENV NEXTCLOUD_INIT_HTACCESS=1
ENV SQLITE_DATABASE repod ENV SQLITE_DATABASE=repod
RUN apt-get update && \ RUN apt-get update && \
apt-get install -y nodejs npm sqlite3 && \ apt-get install -y nodejs npm sqlite3 && \