Skip to content

Commit

Permalink
chore: fix CI snapshots
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgehermo9 committed Jan 24, 2025
1 parent 2f2346b commit f6a03a8
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ FROM rust:1.83.0-slim as builder
WORKDIR /usr/src/

COPY . .
# The `loco` root folder should be moved to this dockerfile path so the context can copy it to the image
RUN mkdir -p /home/runner/work/loco/loco && mv loco/* /home/runner/work/loco/loco && rm -rf loco
RUN cargo build --release
FROM debian:bookworm-slim
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ FROM rust:1.83.0-slim as builder
WORKDIR /usr/src/

COPY . .
# The `loco` root folder should be moved to this dockerfile path so the context can copy it to the image
RUN mkdir -p /home/runner/work/loco/loco && mv loco/* /home/runner/work/loco/loco && rm -rf loco
RUN cargo build --release
FROM debian:bookworm-slim
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ FROM rust:1.83.0-slim as builder
WORKDIR /usr/src/

COPY . .
# The `loco` root folder should be moved to this dockerfile path so the context can copy it to the image
RUN mkdir -p /home/runner/work/loco/loco && mv loco/* /home/runner/work/loco/loco && rm -rf loco
RUN cargo build --release
FROM debian:bookworm-slim
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ FROM rust:1.83.0-slim as builder
WORKDIR /usr/src/

COPY . .
# The `loco` root folder should be moved to this dockerfile path so the context can copy it to the image
RUN mkdir -p /home/runner/work/loco/loco && mv loco/* /home/runner/work/loco/loco && rm -rf loco
RUN cargo build --release
FROM debian:bookworm-slim
Expand Down

0 comments on commit f6a03a8

Please sign in to comment.