Rename to Segfautils

Signed-off-by: Odyssey346 <odyssey346@disroot.org>
This commit is contained in:
Odyssey346
2022-08-02 10:41:17 +02:00
parent 68e2c6475e
commit 2f6fbed9c0
11 changed files with 122 additions and 118 deletions

View File

@@ -1,15 +1,15 @@
FROM golang:1.18-alpine3.16
ENV SEGFAUTILITIES_PORT 6893
ENV SEGFAUTILS_PORT 6893
RUN mkdir /segfautilities
WORKDIR /segfautilities
COPY . /segfautilities/
RUN mkdir /segfautils
WORKDIR /segfautils
COPY . /segfautils/
RUN go mod download
EXPOSE 6893
RUN go build -o segfautilities
RUN chmod +x segfautilities
RUN go build -o segfautils
RUN chmod +x segfautils
RUN go clean -modcache
CMD ["./segfautilities"]
CMD ["./segfautils"]