refactor: 🎨 rework Dockerfile
This commit is contained in:
parent
193ceeba72
commit
9472c7f154
13
Dockerfile
13
Dockerfile
@ -1,10 +1,11 @@
|
||||
FROM nextcloud:30
|
||||
|
||||
ARG APP_NAME=repod
|
||||
ENV NEXTCLOUD_UPDATE=1
|
||||
ENV NEXTCLOUD_ADMIN_USER=repod
|
||||
ENV NEXTCLOUD_ADMIN_PASSWORD=repod
|
||||
ENV NEXTCLOUD_ADMIN_USER=$APP_NAME
|
||||
ENV NEXTCLOUD_ADMIN_PASSWORD=$APP_NAME
|
||||
ENV NEXTCLOUD_INIT_HTACCESS=1
|
||||
ENV SQLITE_DATABASE=repod
|
||||
ENV SQLITE_DATABASE=$APP_NAME
|
||||
|
||||
RUN apt-get update && \
|
||||
apt-get install -y nodejs npm sqlite3 && \
|
||||
@ -13,10 +14,10 @@ RUN apt-get update && \
|
||||
|
||||
USER www-data
|
||||
|
||||
COPY --chown=www-data:www-data . apps/repod
|
||||
RUN cd apps/repod && make build && cd - && \
|
||||
COPY --chown=www-data:www-data . apps/$APP_NAME
|
||||
RUN cd apps/$APP_NAME && make build && cd - && \
|
||||
php occ app:install gpoddersync && \
|
||||
php occ app:enable repod && \
|
||||
php occ app:enable $APP_NAME && \
|
||||
php occ config:system:set debug --value=true
|
||||
|
||||
USER root
|
||||
|
Loading…
Reference in New Issue
Block a user