Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-nextcloud.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
images: ghcr.io/${{ github.repository }}
tags: |
type=raw,value=latest
type=raw,value=31.0.10
type=raw,value=32
type=raw,value=build-${{ github.run_number }}

- name: Build and push Docker image
Expand Down
5 changes: 4 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM nextcloud:latest

ARG VERSION=31.0.10
ARG VERSION=32

# Update package lists
RUN apt-get update
Expand All @@ -13,3 +13,6 @@ RUN apt-get install -y nano

#Install Node & NPM
RUN apt-get install -y nodejs npm

# Install OpenJDK
RUN apt-get install openjdk-21
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ services:
build:
context: .
dockerfile: Dockerfile
image: my-nextcloud:latest
image: ghcr.io/codefallacy/nextcloud:32
restart: always
depends_on:
- nextcloud-db
Expand Down
Loading