Skip to content

Commit

Permalink
fix: Dockerfile command case
Browse files Browse the repository at this point in the history
  • Loading branch information
mrjackwills committed Jul 27, 2024
1 parent dfced56 commit 068e402
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions containerised/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
## Builder ##
#############

FROM --platform=linux/amd64 rust:slim as BUILDER
FROM --platform=linux/amd64 rust:slim AS builder

ARG TARGETARCH

Expand Down Expand Up @@ -49,12 +49,12 @@ RUN cp /usr/src/oxker/target/$(cat /.platform)/release/oxker /
## Runtime ##
#############

FROM scratch as RUNTIME
FROM scratch

# Set an ENV to indicate that we're running in a container
ENV OXKER_RUNTIME=container

COPY --from=BUILDER /oxker /app/
COPY --from=builder /oxker /app/

# Run the application
# this is used in the application itself so DO NOT EDIT
Expand Down

0 comments on commit 068e402

Please sign in to comment.