cloud / Dockerfile
enemy7's picture
Rename Dockerfile1 to Dockerfile
8da3fe4
raw
history blame
293 Bytes
# Use the official Nextcloud image as the base image
FROM ubuntu:latest
# Install additional PHP modules if required (uncomment and add more if needed)
RUN apt-get update && apt-get upgrade -y
RUN apt-get install docker -y
EXPOSE 7860
COPY . /app
RUN cd /app
CMD ["docker-compose up "]