Skip to content

Commit

Permalink
[TASK] fix warnings in docker file (#783)
Browse files Browse the repository at this point in the history
Docker warns about the invalid casing

Co-authored-by: Lina Wolf <[email protected]>
  • Loading branch information
jaapio and linawolf authored Oct 11, 2024
1 parent 5e960ff commit 60c8454
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM composer:2 as Builder
FROM composer:2 AS builder

WORKDIR /opt/guides
COPY . /opt/guides
Expand All @@ -10,7 +10,7 @@ FROM php:8.1-cli-alpine
COPY . /opt/guides
WORKDIR /opt/guides

COPY --from=Builder /opt/guides/vendor /opt/guides/vendor
COPY --from=builder /opt/guides/vendor /opt/guides/vendor
RUN echo "memory_limit=4G" >> /usr/local/etc/php/conf.d/typo3.ini

ARG TYPO3AZUREEDGEURIVERSION
Expand Down

0 comments on commit 60c8454

Please sign in to comment.