8 lines
214 B
Docker
8 lines
214 B
Docker
|
|
FROM alpine:3.19
|
||
|
|
RUN apk add --no-cache ca-certificates tzdata
|
||
|
|
WORKDIR /app
|
||
|
|
COPY deploy/bin/inventory .
|
||
|
|
COPY deploy/etc/inventory.yaml etc/inventory.yaml
|
||
|
|
EXPOSE 9002
|
||
|
|
CMD ["./inventory", "-f", "etc/inventory.yaml"]
|