18 lines
443 B
Docker
18 lines
443 B
Docker
FROM golang:1.16.5-alpine AS build
|
|
|
|
WORKDIR /fastpastebin
|
|
COPY . .
|
|
|
|
WORKDIR /fastpastebin/cmd/fastpastebin
|
|
|
|
RUN CGO_ENABLED=0 go build -tags netgo
|
|
|
|
FROM alpine:3.13
|
|
LABEL maintainer "Stanislav N. <pztrn@pztrn.name>"
|
|
|
|
COPY --from=build /fastpastebin/cmd/fastpastebin/fastpastebin /app/fastpastebin
|
|
COPY docker/fastpastebin.docker.yaml /app/fastpastebin.yaml
|
|
|
|
EXPOSE 25544
|
|
ENTRYPOINT [ "/app/fastpastebin", "-config", "/app/fastpastebin.yaml" ]
|