Skip to content

Commit

Permalink
format fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
six2dez committed Sep 5, 2024
1 parent d8cd120 commit 6f87c58
Show file tree
Hide file tree
Showing 2 changed files with 191 additions and 181 deletions.
9 changes: 8 additions & 1 deletion Docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# syntax=docker/dockerfile:1.4

# Specify a non-root user
FROM kalilinux/kali-rolling:trunk AS base_reconftw
USER nonrootuser

# Add a healthcheck instruction
HEALTHCHECK --interval=30s --timeout=5s --start-period=5s --retries=3 CMD curl --fail http://localhost/ || exit 1

#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#

## You can change these variables
Expand All @@ -17,7 +24,7 @@ ARG GIT_REPOSITORY_RECONFTW="https://github.com/six2dez/reconftw"
###> Do NOT change anything beyond this point <###
##################################################

FROM kalilinux/kali-rolling:latest AS base
FROM kalilinux/kali-rolling:trunk AS base

LABEL org.label-schema.name='reconftw'
LABEL org.label-schema.description='A simple script for full recon'
Expand Down
Loading

0 comments on commit 6f87c58

Please sign in to comment.