Skip to content

Commit

Permalink
chore: Add Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
rumpelsepp committed Jul 19, 2024
1 parent ccc3ff1 commit 975c14f
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# SPDX-FileCopyrightText: AISEC Pentesting Team
#
# SPDX-License-Identifier: CC0-1.0

FROM debian:stable

LABEL org.opencontainers.image.authors="[email protected]"

RUN DEBIAN_FRONTEND=noninteractive apt-get update && apt-get install -y python3 python3-poetry

WORKDIR /app/gallia
COPY . .
RUN ["poetry", "install"]

ENTRYPOINT [ "poetry", "run", "gallia" ]

0 comments on commit 975c14f

Please sign in to comment.