Skip to content

Commit

Permalink
chore(ci): fix docker build
Browse files Browse the repository at this point in the history
  • Loading branch information
nlevee committed Nov 18, 2023
1 parent 7454d55 commit d1f2721
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# syntax=docker/dockerfile:1

FROM --platform=$BUILDPLATFORM docker.io/alpine:3.18 as base

# Build the web ui from source
FROM --platform=$BUILDPLATFORM docker.io/node:18 AS build-node
WORKDIR /exa
Expand Down Expand Up @@ -42,7 +44,7 @@ COPY --link --from=releaser /out /

# Final stage
# Deploy the application binary into a lean image
FROM --platform=$BUILDPLATFORM docker.io/alpine:3.18
FROM base

LABEL maintainer="varbhat"
LABEL org.label-schema.schema-version="1.0"
Expand Down

0 comments on commit d1f2721

Please sign in to comment.