This repository has been archived on 2022-10-30. You can view files and clone it, but cannot push or open issues or pull requests.
Segfautils/Dockerfile
Odyssey346 0bffbc3772 Are we docker yet?
Signed-off-by: Odyssey346 <odyssey346@disroot.org>
2022-07-26 19:12:43 +02:00

12 lines
196 B
Docker

FROM golang:1.18-alpine3.16
ENV SEGFAUTILITIES_PORT 6893
RUN mkdir /segfautilities
WORKDIR /segfautilities
COPY . /segfautilities/
RUN go mod download
EXPOSE 6893
CMD ["go", "run", "main.go"]