File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ ARG NODE_VERSION=20
2
2
ARG NODE_IMAGE=public.ecr.aws/docker/library/node:${NODE_VERSION}-slim
3
3
ARG EDGEDB_IMAGE=ghcr.io/edgedb/edgedb:5
4
4
5
- FROM ${NODE_IMAGE} as base-runtime
5
+ FROM ${NODE_IMAGE} AS base-runtime
6
6
7
7
# Install these native packages
8
8
RUN apt-get update \
@@ -22,7 +22,7 @@ RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.edgedb.com | sh -s -- -y --n
22
22
# Enable yarn via corepack
23
23
RUN corepack enable
24
24
25
- FROM ${EDGEDB_IMAGE} as builder
25
+ FROM ${EDGEDB_IMAGE} AS builder
26
26
27
27
# region Install NodeJS
28
28
ARG NODE_VERSION
@@ -100,7 +100,7 @@ RUN yarn workspaces focus --all --production
100
100
# Remove yarn cache to reduce image size
101
101
RUN yarn cache clean --all
102
102
103
- FROM base-runtime as runtime
103
+ FROM base-runtime AS runtime
104
104
105
105
WORKDIR /opt/cord-api
106
106
You can’t perform that action at this time.
0 commit comments