Added Dockerfile

This commit is contained in:
jpk 2023-06-30 07:29:54 +02:00
parent b4f59f4cba
commit 725215a18c
1 changed files with 17 additions and 0 deletions

17
Dockerfile Normal file
View File

@ -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"]