10 lines
No EOL
293 B
Docker
10 lines
No EOL
293 B
Docker
FROM photoprism/development:20211022
|
|
|
|
# Copy latest entrypoint script
|
|
COPY --chown=root:root /docker/development/entrypoint.sh /entrypoint.sh
|
|
COPY --chown=root:root /docker/scripts/Makefile /root/Makefile
|
|
|
|
# Set up project directory
|
|
WORKDIR "/go/src/github.com/photoprism/photoprism"
|
|
|
|
COPY . . |