Added Dockerfile
This commit is contained in:
parent
b4f59f4cba
commit
725215a18c
|
@ -0,0 +1,17 @@
|
|||
# syntax=docker/dockerfile:1
|
||||
|
||||
FROM alpine:3.18
|
||||
|
||||
ENV PIPX_BIN_DIR /bin
|
||||
ENV LANG C.UTF-8
|
||||
|
||||
WORKDIR /install
|
||||
COPY . .
|
||||
|
||||
RUN apk add --no-cache git python3 py3-pip \
|
||||
&& pip install pipx
|
||||
|
||||
RUN pipx install . \
|
||||
&& rm -Rf /install
|
||||
|
||||
CMD ["d4armory"]
|
Loading…
Reference in New Issue