Skip to content

Commit

Permalink
fix(api): dockerfile label
Browse files Browse the repository at this point in the history
  • Loading branch information
AliMD committed Dec 11, 2023
1 parent 5ef7455 commit f6c9d03
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/api/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
FROM ghcr.io/alwatr/node:20.10.0 as builder

LABEL org.opencontainers.image.base.name="ghcr.io/alwatr/node:20.10.0"

RUN set -ex; corepack enable;

COPY . .
Expand All @@ -15,6 +13,8 @@ RUN set -eux; \

FROM ghcr.io/alwatr/node:20.10.0

LABEL org.opencontainers.image.base.name="ghcr.io/alwatr/node:20.10.0"

COPY --from=builder /app/packages/api/dist/ .
RUN set -eux; ls -RlahF /app;

Expand Down

0 comments on commit f6c9d03

Please sign in to comment.