Skip to content
Open
Show file tree
Hide file tree
Changes from 6 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: 2 additions & 0 deletions .docker/app.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ RUN apk add --no-cache \
soap \
&& apk del --purge .build-deps

RUN apk add --no-cache exiftool

# Configure proxy if there is any. See: https://stackoverflow.com/a/2266500/1796523
RUN [ -z "$HTTP_PROXY" ] || pear config-set http_proxy $HTTP_PROXY
RUN apk add --no-cache yaml \
Expand Down
2 changes: 2 additions & 0 deletions .docker/worker.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ RUN apk add --no-cache \
zip \
&& apk del --purge .build-deps

RUN apk add --no-cache exiftool
Comment thread
mzur marked this conversation as resolved.
Outdated

# Configure proxy if there is any. See: https://stackoverflow.com/a/2266500/1796523
RUN [ -z "$HTTP_PROXY" ] || pear config-set http_proxy $HTTP_PROXY
RUN apk add --no-cache yaml \
Expand Down
2 changes: 2 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,11 @@
"laravel/framework": "^10.0",
"laravel/tinker": "^2.8",
"laravel/ui": "^4.0",
"lychee-org/php-exif": "^1.0",
"msurguy/honeypot": "^1.0",
"pgvector/pgvector": "^0.1.4",
"php-ffmpeg/php-ffmpeg": "^1.0",
"proj4php/proj4php": "^2.0",
"pusher/pusher-php-server": "^7.2",
"ramsey/uuid": "^4.0",
"ramsey/uuid-doctrine": "^1.8"
Expand Down
Loading