We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2da90fc commit 48a4277Copy full SHA for 48a4277
1 file changed
Dockerfile
@@ -1,11 +1,12 @@
1
# Multi-stage build for poor-cli
2
-FROM rust:1-slim-bookworm as rust-builder
+FROM rust:1-slim-bookworm AS rust-builder
3
4
WORKDIR /src
5
COPY poor-cli-tui ./poor-cli-tui
6
-RUN cargo build --manifest-path poor-cli-tui/Cargo.toml --release
+COPY poor_cli/command_manifest.json ./poor_cli/command_manifest.json
7
+RUN cargo build --manifest-path poor-cli-tui/Cargo.toml --release --locked
8
-FROM python:3.11-slim as builder
9
+FROM python:3.11-slim AS builder
10
11
# Set working directory
12
WORKDIR /app
0 commit comments