-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathDockerfile
More file actions
56 lines (46 loc) · 1.58 KB
/
Dockerfile
File metadata and controls
56 lines (46 loc) · 1.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
FROM ghcr.io/trueforge-org/golang:1.26.0@sha256:66c4ecd659c51f95aabf2632a65685b467d03747b3c2a690604b62ac9229641a as buildstage
# build variables
ARG VERSION
USER root
RUN \
echo "**** install build packages ****" && \
apt-get update && apt-get install -y --no-install-recommends \
build-essential \
golang-go
RUN \
echo "**** fetch source code ****" && \
mkdir -p \
/tmp/pwndrop && \
(curl -fL -o \
/tmp/pwndrop-src.tar.gz \
"https://github.com/kgretzky/pwndrop/archive/refs/tags/${VERSION}.tar.gz" || curl -fL -o \
/tmp/pwndrop-src.tar.gz \
"https://github.com/kgretzky/pwndrop/archive/refs/tags/v${VERSION}.tar.gz" || (PWDROP_RELEASE=$(curl -sX GET "https://api.github.com/repos/kgretzky/pwndrop/releases/latest" \
| awk '/tag_name/{print $4;exit}' FS='[""]') && curl -fL -o \
/tmp/pwndrop-src.tar.gz \
"https://github.com/kgretzky/pwndrop/archive/refs/tags/${PWDROP_RELEASE}.tar.gz")) && \
tar xf \
/tmp/pwndrop-src.tar.gz -C \
/tmp/pwndrop --strip-components=1 && \
echo "**** compile pwndrop ****" && \
cd /tmp/pwndrop && \
go build -ldflags="-s -w" \
-o /app/pwndrop/pwndrop \
-mod=vendor \
main.go && \
cp -r ./www /app/pwndrop/admin
############## runtime stage ##############
FROM ghcr.io/trueforge-org/ubuntu:24.04@sha256:c5a3b56e4d22600d2b618d602d487732516cc067cb21969798210c3b12304842
# set version label
ARG VERSION
ARG TARGETARCH
USER root
# add pwndrop
COPY --from=buildstage /app/pwndrop/ /app/pwndrop/
# add local files
USER apps
COPY --chmod=0755 . /
# ports and volumes
EXPOSE 8080 4443
WORKDIR /config
VOLUME /config