File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed
Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -46,13 +46,13 @@ format:
4646# #@ Build
4747.PHONY : build
4848build : # # Builds using hatch to `dist`
49- $(VENV ) hatch version $(build_version )
50- $(VENV ) hatch build -c
49+ $(VENV ) hatch -p skyhook-agent version $(build_version )
50+ $(VENV ) hatch -p skyhook-agent build -c
5151
5252# #@ Publish
5353.PHONY : publish
5454publish : # # Publishes using hatch
55- $(VENV ) hatch publish
55+ $(VENV ) hatch -p skyhook-agent publish
5656
5757DOCKER_CMD ?= docker
5858BUILD_ARGS ?=
Original file line number Diff line number Diff line change 11FROM python:3.12-alpine as builder
22
3- ARG AGENT_VERSION:-0.0.0
3+ ARG AGENT_VERSION
44
55COPY . /code
66WORKDIR /code
7- RUN apk add bash make
7+ RUN echo "AGENT_VERSION=${AGENT_VERSION}"
8+ RUN apk update && apk add bash make
89RUN make venv
910RUN make build build_version=${AGENT_VERSION}
1011
You can’t perform that action at this time.
0 commit comments