Skip to content
Open
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
4 changes: 2 additions & 2 deletions generate-comments/Dockerfile-build
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# syntax=docker/dockerfile:experimental
FROM wyrihaximusnet/php:8.3-nts-alpine-slim-dev-root AS install-dependencies
FROM wyrihaximusnet/php:8.5-nts-alpine-slim-dev-root AS install-dependencies
RUN mkdir /workdir
COPY ./composer.json /workdir
COPY ./composer.lock /workdir
WORKDIR /workdir
RUN composer install --ansi --no-progress --no-interaction --prefer-dist

## Compile runtime image
FROM wyrihaximusnet/php:8.3-nts-alpine-slim-root AS runtime
FROM wyrihaximusnet/php:8.5-nts-alpine-slim-root AS runtime
RUN mkdir /workdir
COPY ./entrypoint.sh ./comment.php ./post-process.php ./composer.* /workdir/
COPY --from=install-dependencies /workdir/vendor/ /workdir/vendor/
Expand Down
Loading