Skip to content

Commit 03f7066

Browse files
authored
chore: use new Dockerfile key value format (#7092)
1 parent c6d540e commit 03f7066

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

docker/cli.dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ LABEL org.opencontainers.image.vendor="Kamil Kisiela"
1717
LABEL org.opencontainers.image.url="https://github.com/graphql-hive/platform"
1818
LABEL org.opencontainers.image.source="https://github.com/graphql-hive/platform"
1919

20-
ENV ENVIRONMENT production
21-
ENV RELEASE $RELEASE
20+
ENV ENVIRONMENT=production
21+
ENV RELEASE=$RELEASE
2222
RUN hive --version
2323

2424
ENTRYPOINT ["hive"]

docker/migrations.dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ WORKDIR /usr/src/app
77
COPY --from=dist . /usr/src/app/
88
COPY --from=shared . /
99

10-
ENV ENVIRONMENT production
11-
ENV NODE_ENV production
12-
ENV RELEASE $RELEASE
10+
ENV ENVIRONMENT=production
11+
ENV NODE_ENV=production
12+
ENV RELEASE=$RELEASE
1313

1414
LABEL org.opencontainers.image.licenses=MIT
1515
LABEL org.opencontainers.image.title=$IMAGE_TITLE

docker/services.dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ LABEL org.opencontainers.image.vendor="Kamil Kisiela"
1717
LABEL org.opencontainers.image.url="https://github.com/graphql-hive/platform"
1818
LABEL org.opencontainers.image.source="https://github.com/graphql-hive/platform"
1919

20-
ENV ENVIRONMENT production
21-
ENV RELEASE $RELEASE
22-
ENV PORT $PORT
20+
ENV ENVIRONMENT=production
21+
ENV RELEASE=$RELEASE
22+
ENV PORT=$PORT
2323

2424
HEALTHCHECK --interval=5s \
2525
--timeout=5s \

0 commit comments

Comments
 (0)