mirror of
https://github.com/openvk/openvk
synced 2024-11-14 19:19:14 +03:00
fix(docker): fix FROM...AS casing
This commit is contained in:
parent
b4fd4f018c
commit
3c53564d57
1 changed files with 2 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
|||
ARG GITREPO=openvk/openvk
|
||||
FROM ghcr.io/${GITREPO}/php:8.2-cli as builder
|
||||
FROM ghcr.io/${GITREPO}/php:8.2-cli AS builder
|
||||
|
||||
WORKDIR /opt
|
||||
|
||||
|
@ -27,7 +27,7 @@ ADD composer.* .
|
|||
|
||||
RUN composer install
|
||||
|
||||
FROM docker.io/node:20 as nodejs
|
||||
FROM docker.io/node:20 AS nodejs
|
||||
|
||||
COPY --from=builder /opt/chandler /opt/chandler
|
||||
|
||||
|
|
Loading…
Reference in a new issue